@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Serif+Bengali:wght@400;500;600;700&display=swap');

/* ==========================================
   GLOBAL CUSTOM VARIABLES & TOKENS
   ========================================== */
:root {
    /* Colors */
    --bg-main: #FCFBF7;         /* Elegant Ivory Cream */
    --bg-card: #FFFFFF;         /* Pure White */
    --primary-maroon: #5C131E;   /* Deep Premium Maroon */
    --primary-dark: #3E0C13;     /* Even Darker Maroon for depth */
    --accent-gold: #D4AF37;      /* Metallic Antique Gold */
    --accent-gold-light: rgba(212, 175, 55, 0.15);
    --accent-gold-glow: rgba(212, 175, 55, 0.4);
    --accent-saffron: #FF6B00;   /* Saffron Sizzling Highlight */
    --text-dark: #2D2D2D;        /* Charcoal for high readability */
    --text-muted: #555555;       /* Muted grey for subtexts */
    --whatsapp-green: #25D366;   /* WhatsApp Brand Color */
    
    /* Layout Details */
    --border-gold: 1px solid rgba(212, 175, 55, 0.35);
    --border-gold-thick: 2px solid #D4AF37;
    --shadow-premium: 0 10px 40px rgba(92, 19, 30, 0.05), 0 1px 10px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 40px rgba(92, 19, 30, 0.1), 0 1px 15px rgba(212, 175, 55, 0.2);
    --shadow-inset: inset 0 2px 4px rgba(0,0,0,0.06);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Fonts */
    --font-serif: 'Noto Serif Bengali', serif;
    --font-sans: 'Hind Siliguri', sans-serif;
}

/* ==========================================
   BASE RESET & LAYOUT
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-maroon);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--primary-maroon);
    font-weight: 700;
    line-height: 1.3;
}

p {
    color: var(--text-dark);
    font-weight: 400;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Faint Sacred Yantra Watermark */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.02" fill="none" stroke="%23D4AF37" stroke-width="0.3"><circle cx="50" cy="50" r="45"/><polygon points="50,5 90,85 10,85"/><polygon points="50,95 90,15 10,15"/><circle cx="50" cy="50" r="25"/><circle cx="50" cy="50" r="10"/><path d="M50,0 L50,100 M0,50 L100,50 M15,15 L85,85 M15,85 L85,15"/></svg>');
    background-repeat: repeat;
    background-size: 400px;
    pointer-events: none;
    z-index: 1;
}

/* ==========================================
   SHARED HEADER & STICKY NAVIGATION
   ========================================== */
.top-bar {
    background-color: var(--primary-maroon);
    color: #FFFFFF;
    font-size: 0.85rem;
    padding: 6px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-gold);
    z-index: 100;
    position: relative;
}

.top-bar-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-weight: 300;
}

.top-bar-info i {
    color: var(--accent-gold);
}

.top-bar-socials {
    display: flex;
    gap: 15px;
}

.top-bar-socials a {
    color: #FFFFFF;
}

.top-bar-socials a:hover {
    color: var(--accent-gold);
    transform: scale(1.15);
}

/* Sticky Glassmorphic Navbar */
header {
    position: sticky;
    top: 0;
    background: rgba(252, 251, 247, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(92, 19, 30, 0.02);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    animation: pulseGlow 3s infinite ease-in-out;
}

.logo-text h1 {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: -2px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-maroon);
}

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

/* Header Action Button */
.header-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B8860B 100%);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #B8860B 0%, var(--accent-gold) 100%);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 6px;
    z-index: 101;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    border-radius: 2px;
    transition: var(--transition-smooth);
    background-color: var(--primary-maroon);
}

/* ==========================================
   BUTTONS & ACCENT ELEMENTS
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    border: var(--border-gold);
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-maroon) 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: var(--primary-maroon);
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    border: var(--border-gold);
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--whatsapp-green);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    filter: brightness(1.05);
}

/* Badge Styling */
.badge-premium {
    display: inline-block;
    background-color: var(--accent-gold-light);
    border: 1px solid var(--accent-gold);
    color: var(--primary-maroon);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Section Standard Layouts */
section {
    padding: 80px 5%;
    position: relative;
    z-index: 2;
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    font-family: var(--font-sans);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

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

/* ==========================================
   1. HOME PAGE (index.html) SPECIFIC
   ========================================== */
/* Hero Section */
.hero-section {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
    padding: 40px 5% 80px 5%;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.04) 0%, rgba(252, 251, 247, 0) 70%);
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--accent-saffron);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-headline {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.25;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Portrait & Rotating Zodiac */
.hero-image-wrapper {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
}

.zodiac-wheel-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    z-index: 1;
    opacity: 0.45;
    animation: rotateZodiac 60s infinite linear;
    pointer-events: none;
}

.portrait-container {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B8860B 100%);
    box-shadow: 0 15px 40px rgba(92, 19, 30, 0.15), 0 5px 15px rgba(212, 175, 55, 0.3);
}

.portrait-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--bg-main);
    border: 4px solid var(--bg-main);
}

/* Credentials Banner */
.credentials-banner {
    background-color: #FFFFFF;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 5%;
}

.credentials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.credential-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    width: 60px;
    height: 60px;
    background-color: var(--bg-main);
    border: var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
}

.credential-info h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

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

/* Quick Info / Philosophy Block */
.philosophy-section {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 5%;
    padding: 100px 5%;
}

.philosophy-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.philosophy-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    border: var(--border-gold);
}

.philosophy-text {
    flex: 1.2;
}

.philosophy-points {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.philosophy-point {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
}

.philosophy-point i {
    color: var(--accent-gold);
    margin-top: 4px;
}

/* Mantra Banner */
.mantra-banner {
    background: linear-gradient(rgba(92, 19, 30, 0.93), rgba(62, 12, 19, 0.97)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="none" opacity="0.03" stroke="%23D4AF37"><circle cx="30" cy="30" r="28"/><polygon points="30,5 55,48 5,48"/></svg>');
    background-attachment: fixed;
    background-position: center;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 5%;
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
}

.mantra-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--accent-gold);
    line-height: 1.6;
}

.mantra-translation {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.85;
}

/* ==========================================
   2. SERVICES PAGE (services.html) SPECIFIC
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-card);
    border: var(--border-gold);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-maroon));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-maroon);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    font-size: 2.5rem;
    color: var(--primary-maroon);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
    color: var(--accent-gold);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-maroon);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-card-list {
    margin-bottom: 25px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-card-list li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.service-card .btn-whatsapp {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   3. ABOUT US PAGE (about.html) SPECIFIC
   ========================================== */
.about-hero {
    display: flex;
    align-items: center;
    gap: 6%;
    padding: 80px 5%;
}

.about-hero-img {
    flex: 0.9;
    max-width: 450px;
    position: relative;
}

.about-hero-img img {
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    border: var(--border-gold-thick);
}

.about-hero-text {
    flex: 1.1;
}

.about-bio-para {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.credential-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-card);
    border: var(--border-gold);
    padding: 12px 20px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
}

.credential-tag i {
    color: var(--accent-gold);
}

/* Testimonials Carousel Section */
.testimonials-section {
    background-color: #FFFFFF;
    padding: 80px 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-main);
    border: var(--border-gold);
    border-radius: 8px;
    padding: 35px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.15);
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.98rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-maroon);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-serif);
    border: 1px solid var(--accent-gold);
}

.testimonial-user-info h4 {
    font-size: 1rem;
    color: var(--primary-maroon);
    margin-bottom: 2px;
}

.testimonial-user-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   4. CHAMBER & CONTACT PAGE (contact.html)
   ========================================== */
.contact-container {
    display: flex;
    gap: 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.chamber-card {
    background-color: var(--bg-card);
    border: var(--border-gold-thick);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.chamber-card::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f67e"; /* Om symbol placeholder */
    font-size: 10rem;
    color: rgba(92, 19, 30, 0.02);
    pointer-events: none;
}

.chamber-badge {
    background-color: var(--primary-maroon);
    color: #FFFFFF;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--accent-gold);
}

.chamber-address {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary-maroon);
    margin-bottom: 20px;
    line-height: 1.4;
}

.chamber-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.chamber-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.chamber-details li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.chamber-details h5 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 2px;
}

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

/* Appointment Form Panel */
.appointment-form-panel {
    flex: 1.1;
    background-color: var(--bg-card);
    border: var(--border-gold);
    border-radius: 8px;
    padding: 50px 40px;
    box-shadow: var(--shadow-premium);
}

.appointment-form-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.form-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

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

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-main);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-maroon);
    background-color: #FFFFFF;
    box-shadow: 0 0 8px rgba(92, 19, 30, 0.08);
}

.booking-form button {
    grid-column: span 2;
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1.05rem;
}

/* ==========================================
   5. BLOG & REMEDIES PAGE (blog.html) SPECIFIC
   ========================================== */
/* Daily Horoscope Grid & Tabs */
.horoscope-section {
    background-color: var(--bg-card);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.zodiac-selector-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.zodiac-btn {
    background-color: var(--bg-main);
    border: var(--border-gold);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.zodiac-btn-icon {
    font-size: 1.8rem;
    color: var(--primary-maroon);
    transition: var(--transition-smooth);
}

.zodiac-btn span {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 0.95rem;
}

.zodiac-btn:hover, .zodiac-btn.active {
    background-color: var(--primary-maroon);
    border-color: var(--primary-maroon);
    color: #FFFFFF;
    box-shadow: var(--shadow-hover);
}

.zodiac-btn:hover .zodiac-btn-icon, .zodiac-btn.active .zodiac-btn-icon {
    color: var(--accent-gold);
    transform: scale(1.15);
}

/* Active Horoscope Display Panel */
.horoscope-display-panel {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-main);
    border: var(--border-gold-thick);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    min-height: 250px;
}

.horoscope-display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.horoscope-zodiac-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.horoscope-zodiac-title i {
    font-size: 2.2rem;
    color: var(--accent-gold);
}

.horoscope-zodiac-title h3 {
    font-size: 1.8rem;
}

.horoscope-date-badge {
    background-color: var(--accent-gold-light);
    color: var(--primary-maroon);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--accent-gold);
}

.horoscope-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.horoscope-content-item {
    background-color: #FFFFFF;
    border: var(--border-gold);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.horoscope-content-item h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 8px;
}

.horoscope-content-item h4 i {
    color: var(--accent-gold);
}

.horoscope-content-item p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Astrological Remedies & Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #FFFFFF;
    border: var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card-img {
    height: 220px;
    background-color: var(--primary-maroon);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-img::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.08" fill="none" stroke="%23D4AF37" stroke-width="0.5"><polygon points="50,5 95,85 5,85"/><circle cx="50" cy="50" r="20"/></svg>');
    background-size: cover;
    animation: rotateZodiac 40s infinite linear;
}

.blog-card-img i {
    font-size: 4rem;
    color: var(--accent-gold);
    z-index: 2;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card .read-more {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--primary-maroon);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.blog-card .read-more:hover {
    color: var(--accent-gold);
}

/* ==========================================
   SHARED FOOTER & FLOATING CTA
   ========================================== */
footer {
    background-color: var(--primary-maroon);
    color: #FFFFFF;
    border-top: 3px solid var(--accent-gold);
    padding: 70px 5% 40px 5%;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.footer-brand p {
    color: #ECECEC;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

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

.footer-links-list a {
    color: #ECECEC;
    font-size: 0.92rem;
}

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

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

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.92rem;
    color: #ECECEC;
    align-items: flex-start;
}

.footer-contact-list li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 0.85rem;
}

/* Floating Quick Contact Drawer */
/* Floating Quick Contact Drawer (Mobile Only) */
.quick-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1.5px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    display: none; /* Hidden on desktop by default */
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    z-index: 999;
    gap: 15px;
}

.quick-contact-item {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 15px;
    border-radius: 8px;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-contact-item.qc-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.quick-contact-item.qc-whatsapp:active {
    transform: scale(0.95);
    filter: brightness(0.9);
}

.quick-contact-item.qc-call {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 14px rgba(92, 19, 30, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.quick-contact-item.qc-call:active {
    transform: scale(0.95);
    filter: brightness(0.9);
}

.quick-contact-item i {
    font-size: 1.15rem;
}

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */
@keyframes rotateZodiac {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(212,175,55,0.4)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(212,175,55,0.8)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(212,175,55,0.4)); }
}

/* Reveal on scroll styling */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.6rem;
    }
    
    .hero-section {
        flex-direction: column-reverse;
        padding-top: 40px;
        text-align: center;
        gap: 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .about-hero {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-img {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .zodiac-selector-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .horoscope-content-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px; /* Under navbar */
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-main);
        width: 100%;
        height: calc(100vh - 110px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: var(--border-gold);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 16px 0;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta {
        display: none; /* Hide on mobile navbar to save space, will rely on other CTAs and floating contact */
    }
    
    .top-bar-socials {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .philosophy-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .philosophy-points {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .appointment-form-panel {
        padding: 30px 20px;
    }
    
    .zodiac-selector-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .horoscope-display-panel {
        padding: 25px 20px;
    }
    
    .quick-contact-bar {
        display: flex; /* Show on mobile */
    }
    
    body {
        padding-bottom: 75px; /* Space for the floating bottom bar */
    }
}

@media (max-width: 480px) {
    .zodiac-selector-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .badge-premium {
        font-size: 0.8rem;
    }
    
    .quick-contact-bar {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .quick-contact-item {
        font-size: 0.85rem;
        padding: 10px 8px;
        border-radius: 6px;
    }
    
    .quick-contact-item i {
        font-size: 1rem;
    }
}

/* Floating WhatsApp Button for Desktop */
.desktop-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.desktop-whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    filter: brightness(1.05);
}

.desktop-whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .desktop-whatsapp-float {
        display: none; /* Hide on mobile devices, mobile bar will show instead */
    }
}

/* ==========================================
   6. QUICK INQUIRY FORM (Home/Contact Page)
   ========================================== */
.quick-inquiry-section {
    padding: 80px 5%;
    background-color: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.quick-inquiry-container {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, #F5A623 0%, #D4AF37 50%, #F57C00 100%);
    border-radius: 16px;
    padding: 45px 35px;
    box-shadow: 0 20px 50px rgba(245, 124, 0, 0.25), 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.65);
    transition: var(--transition-smooth);
}

.quick-inquiry-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(245, 124, 0, 0.35), 0 5px 25px rgba(212, 175, 55, 0.2);
}

/* Zodiac Wheel Background Watermark for Form */
.quick-inquiry-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.08" fill="none" stroke="%23ffffff" stroke-width="0.35"><circle cx="50" cy="50" r="46"/><circle cx="50" cy="50" r="40"/><line x1="50" y1="4" x2="50" y2="96"/><line x1="4" y1="50" x2="96" y2="50"/><line x1="17.5" y1="17.5" x2="82.5" y2="82.5"/><line x1="17.5" y1="82.5" x2="82.5" y2="17.5"/><circle cx="50" cy="50" r="28" stroke-dasharray="2, 2"/><text x="47.5" y="12" font-size="6" fill="%23ffffff" font-family="sans-serif">♈</text><text x="69" y="18" font-size="6" fill="%23ffffff" font-family="sans-serif">♉</text><text x="82" y="36" font-size="6" fill="%23ffffff" font-family="sans-serif">♊</text><text x="85" y="52" font-size="6" fill="%23ffffff" font-family="sans-serif">♋</text><text x="79" y="69" font-size="6" fill="%23ffffff" font-family="sans-serif">♌</text><text x="65" y="84" font-size="6" fill="%23ffffff" font-family="sans-serif">♍</text><text x="48" y="91" font-size="6" fill="%23ffffff" font-family="sans-serif">♎</text><text x="31" y="85" font-size="6" fill="%23ffffff" font-family="sans-serif">♏</text><text x="16" y="70" font-size="6" fill="%23ffffff" font-family="sans-serif">♐</text><text x="12" y="52" font-size="6" fill="%23ffffff" font-family="sans-serif">♑</text><text x="17" y="34" font-size="6" fill="%23ffffff" font-family="sans-serif">♒</text><text x="30" y="18" font-size="6" fill="%23ffffff" font-family="sans-serif">♓</text></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    animation: rotateZodiac 120s infinite linear;
}

.quick-inquiry-container * {
    position: relative;
    z-index: 2;
}

.quick-inquiry-title {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.quick-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quick-inquiry-input, .quick-inquiry-select, .quick-inquiry-textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #333333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quick-inquiry-input:focus, .quick-inquiry-select:focus, .quick-inquiry-textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.12);
    transform: translateY(-2px);
}

.quick-inquiry-input::placeholder, .quick-inquiry-select::placeholder, .quick-inquiry-textarea::placeholder {
    color: #888888;
    opacity: 1;
}

/* Custom styling for date format on quick inquiry DOB input */
.quick-inquiry-input[type="date"] {
    color: #333333;
}

.quick-inquiry-textarea {
    resize: none;
    min-height: 100px;
}

/* Premium Glossy Red Button Style */
.quick-inquiry-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(180deg, #d60000 0%, #b30000 50%, #900000 100%);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(179, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5px;
}

/* Glossy highlight effect on the button */
.quick-inquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.quick-inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(179, 0, 0, 0.6);
    background: linear-gradient(180deg, #e60000 0%, #c70000 50%, #a30000 100%);
}

.quick-inquiry-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(179, 0, 0, 0.4);
}

/* ==========================================
   7. MOBILE BOTTOM NAVIGATION TAB BAR
   ========================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1.5px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    display: none; /* Hidden on desktop by default */
    justify-content: space-around;
    align-items: center;
    z-index: 999;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
    gap: 4px;
    flex: 1;
    height: 100%;
    text-decoration: none;
}

.mobile-nav-item i {
    font-size: 1.25rem;
    transition: all 0.3s ease;
    color: #777777;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: var(--primary-maroon);
}

.mobile-nav-item.active i {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Center Highlighted WhatsApp Tab */
.mobile-nav-whatsapp {
    position: relative;
    top: -12px; /* Floats above the bar */
}

.whatsapp-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    border: 3.5px solid #FFFFFF;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-circle i {
    color: #FFFFFF !important;
    font-size: 1.35rem;
}

.mobile-nav-whatsapp span {
    margin-top: 1px;
}

.mobile-nav-whatsapp:hover .whatsapp-circle {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex; /* Show on mobile devices */
    }
    .quick-contact-bar {
        display: none !important; /* Hide legacy contact bar */
    }
    body {
        padding-bottom: 75px; /* Prevent content overlap */
    }
}

