/* ===== CSS Variables ===== */
:root {
    --primary: #8B0000;
    --primary-dark: #600000;
    --gold: #D4AF37;
    --gold-light: #E8CC6E;
    --orange: #FF9933;
    --orange-light: #FFB366;
    --white: #FFFFFF;
    --background: #FFF8F0;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.1s ease;
    --border-radius: 12px;
    
    --font-heading: 'Mukta', sans-serif;
    --font-subheading: 'Poppins', sans-serif;
    --font-body: 'Noto Sans Devanagari', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader .zodiac-symbol {
    font-size: 4rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader p {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: px 0;
    z-index: 1000;
    transition: var(--transition);
     background: rgba(255, 255, 255);
}

.navbar.scrolled {
   background: rgba(255, 255, 255);
    padding: 0px 0;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}


.logo-symbol {
    font-size: 2rem;
    color: var(--gold);
    /*animation: rotate 10s linear infinite;*/
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    color: #000;
}

/* Mobile Close Button */
.nav-close {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1002;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.nav-close.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.nav-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Hide hamburger when menu is open, show close button */
.nav-toggle.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.slides-container {
    display: flex;
    width: 100%;           /* 3 slides × 100% */
    transition: transform 0.6s ease-in-out;
}

.slide {
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    object-fit: cover;
}

/* Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* Responsive Heights */
@media (min-width: 1400px) {
    .hero { min-height: 100vh; }
}

@media (max-width: 1200px) {
    .hero { min-height: 90vh; }
}

@media (max-width: 992px) {
    .hero { min-height: 75vh; }
}

@media (max-width: 768px) {
    .hero { min-height: 60vh; }
}

@media (max-width: 480px) {
    .hero { min-height: 50vh; }
}

/* Make sure images maintain aspect ratio */
.slide {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Hero Section */
/*.hero {*/
/*    width: 100%;*/
/*}*/

/*.hero-img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*}*/

/* Large Desktop */
/*@media (min-width: 1400px) {*/
/*    .hero {*/
/*        min-height: 100vh;*/
/*    }*/
/*}*/

/* Laptop */
/*@media (max-width: 1200px) {*/
/*    .hero {*/
/*        min-height: 90vh;*/
/*    }*/
/*}*/

/* Tablet */
/*@media (max-width: 992px) {*/
/*    .hero {*/
/*        min-height: 75vh;*/
/*        background-position: center;*/
/*    }*/
/*}*/

/* Mobile */
/*@media (max-width: 768px) {*/
/*    .hero {*/
/*        min-height: 60vh;*/
/*        background-position: center center;*/
/*    }*/
/*}*/

/* Small Mobile */
/*@media (max-width: 480px) {*/
/*    .hero {*/
/*        min-height: 50vh;*/
/*        background-position: center;*/
/*    }*/
/*}*/

/* ===== Hero Section ===== */
/* .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a0a0a 0%, #8B0000 30%, #5a0000 60%, #1a0a0a 100%);
    overflow: hidden;
    padding: 100px 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
} */

/* Spiritual Background Elements */
.spiritual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Om Symbol */
.om-symbol {
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 15rem;
    color: rgba(212, 175, 55, 0.08);
    font-weight: bold;
    animation: floatOm 8s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

@keyframes floatOm {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.12; }
}

/* Mandala Patterns */
.mandala {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
}

.mandala-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: rotateMandala 40s linear infinite;
}

.mandala-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.mandala-1::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}

.mandala-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: rotateMandala 35s linear infinite reverse;
}

.mandala-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.mandala-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 15%;
    animation: rotateMandala 30s linear infinite;
    opacity: 0.5;
}

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

/* Lotus Flowers */
.lotus {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 182, 193, 0.4);
    animation: floatLotus 6s ease-in-out infinite;
}

.lotus-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.lotus-2 {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.lotus-3 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
    font-size: 1.8rem;
}

@keyframes floatLotus {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(10deg) scale(1.1); }
}

/* Diyas (Lamps) */
.diya {
    position: absolute;
    font-size: 2rem;
    animation: flickerDiya 2s ease-in-out infinite;
}

.diya-1 {
    bottom: 15%;
    right: 5%;
    animation-delay: 0s;
}

.diya-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 0.5s;
}

.diya-3 {
    bottom: 10%;
    left: 50%;
    animation-delay: 1s;
}

@keyframes flickerDiya {
    0%, 100% { opacity: 0.7; transform: scale(1); filter: brightness(1); }
    50% { opacity: 1; transform: scale(1.1); filter: brightness(1.3); }
}

/* Stars */
.star {
    position: absolute;
    color: rgba(212, 175, 55, 0.6);
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: 20%;
    font-size: 1rem;
    animation-delay: 0s;
}

.star-2 {
    top: 25%;
    right: 25%;
    font-size: 0.8rem;
    animation-delay: 0.5s;
}

.star-3 {
    top: 40%;
    left: 10%;
    font-size: 1.2rem;
    animation-delay: 1s;
}

.star-4 {
    top: 70%;
    right: 15%;
    font-size: 0.9rem;
    animation-delay: 1.5s;
}

.star-5 {
    bottom: 25%;
    left: 30%;
    font-size: 1rem;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Zodiac Wheel */
.zodiac-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: rotate 80s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zodiac-wheel::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.zodiac-wheel::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}

.zodiac-wheel .zodiac-symbol {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.6);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    background: rgba(139, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    white-space: nowrap;
    letter-spacing: 1px;
}

.zodiac-wheel .zodiac-symbol:nth-child(1) { transform: rotate(0deg) translate(240px) rotate(0deg); }
.zodiac-wheel .zodiac-symbol:nth-child(2) { transform: rotate(30deg) translate(240px) rotate(-30deg); }
.zodiac-wheel .zodiac-symbol:nth-child(3) { transform: rotate(60deg) translate(240px) rotate(-60deg); }
.zodiac-wheel .zodiac-symbol:nth-child(4) { transform: rotate(90deg) translate(240px) rotate(-90deg); }
.zodiac-wheel .zodiac-symbol:nth-child(5) { transform: rotate(120deg) translate(240px) rotate(-120deg); }
.zodiac-wheel .zodiac-symbol:nth-child(6) { transform: rotate(150deg) translate(240px) rotate(-150deg); }
.zodiac-wheel .zodiac-symbol:nth-child(7) { transform: rotate(180deg) translate(240px) rotate(-180deg); }
.zodiac-wheel .zodiac-symbol:nth-child(8) { transform: rotate(210deg) translate(240px) rotate(-210deg); }
.zodiac-wheel .zodiac-symbol:nth-child(9) { transform: rotate(240deg) translate(240px) rotate(-240deg); }
.zodiac-wheel .zodiac-symbol:nth-child(10) { transform: rotate(270deg) translate(240px) rotate(-270deg); }
.zodiac-wheel .zodiac-symbol:nth-child(11) { transform: rotate(300deg) translate(240px) rotate(-300deg); }
.zodiac-wheel .zodiac-symbol:nth-child(12) { transform: rotate(330deg) translate(240px) rotate(-330deg); }

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.guruji-name {
    background: linear-gradient(90deg, var(--white), var(--gold), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item .check {
    color: var(--gold);
    margin-right: 5px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: var(--orange);
    color: var(--white);
}

.btn-call:hover {
    background: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s ease infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    padding: 8px 25px;
    border-radius: 30px;
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

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

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

.title-divider::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.title-divider span {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--background);
    border-radius: var(--border-radius);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--background);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-category {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--background);
}

.service-header i {
    font-size: 1.8rem;
    color: var(--gold);
}

.service-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    padding-left: 10px;
    color: var(--primary);
}

.service-icon {
    color: var(--gold);
}

/* ===== Products Section ===== */
.products {
    padding: 100px 0;
    background: var(--background);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Category Filter Tabs */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--background);
    border: 2px solid transparent;
    border-radius: 30px;
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--white);
    border-color: var(--gold);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}

.filter-icon {
    font-size: 1.1rem;
}

.filter-text {
    font-size: 0.9rem;
}

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

/* Category Section */
.product-category-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--background);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
}

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

/* Product Card */
.product-card {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.product-icon {
    font-size: 3.5rem;
}

.product-content {
    padding: 15px;
}

.product-category-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 1rem;
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.product-feature i {
    color: #25D366;
    font-size: 0.7rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.price-variant {
    font-size: 0.7rem;
    color: var(--text-light);
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.btn-buy i {
    font-size: 0.9rem;
}

/* Products Section Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 70px 0;
    }
    
    .category-filter {
        padding: 15px;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .filter-icon {
        font-size: 0.9rem;
    }
    
    .filter-text {
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-icon {
        font-size: 2.5rem;
    }
    
    .product-content {
        padding: 12px;
    }
    
    .product-name {
        font-size: 0.95rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
    
    .product-feature {
        font-size: 0.72rem;
    }
    
    .price-current {
        font-size: 0.9rem;
    }
    
    .btn-buy {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .category-filter {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        display: grid;
        grid-template-columns: 100px 1fr;
    }
    
    .product-image {
        height: 100%;
        min-height: 150px;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .btn-buy {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .product-card {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Problems Section ===== */
.problems {
    padding: 100px 0;
    background: var(--white);
}

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

.problem-card {
    background: var(--background);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: var(--text-dark);
}

/* ===== Horoscope Section ===== */
.horoscope {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.horoscope .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.horoscope .section-title {
    color: var(--white);
}

.horoscope .title-divider span {
    color: var(--gold);
}

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

.zodiac-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.zodiac-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--gold);
}

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

.zodiac-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.zodiac-prediction {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.zodiac-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
}

.zodiac-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.zodiac-detail-label {
    color: var(--gold);
    font-size: 0.7rem;
}

.zodiac-detail-value {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--background);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-stat p {
    color: var(--text-light);
    margin-top: 5px;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-content {
    padding: 30px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.author-info h4 {
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--background);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--white);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-symbol {
    color: var(--gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ===== Responsive Design ===== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature-item {
        padding: 10px 18px;
    }
    
    .horoscope-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .problems-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    html {
        scroll-padding-top: 70px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .zodiac-wheel {
        width: 450px;
        height: 450px;
    }
    
    .zodiac-wheel .zodiac-symbol {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .zodiac-wheel .zodiac-symbol:nth-child(1) { transform: rotate(0deg) translate(180px) rotate(0deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(2) { transform: rotate(30deg) translate(180px) rotate(-30deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(3) { transform: rotate(60deg) translate(180px) rotate(-60deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(4) { transform: rotate(90deg) translate(180px) rotate(-90deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(5) { transform: rotate(120deg) translate(180px) rotate(-120deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(6) { transform: rotate(150deg) translate(180px) rotate(-150deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(7) { transform: rotate(180deg) translate(180px) rotate(-180deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(8) { transform: rotate(210deg) translate(180px) rotate(-210deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(9) { transform: rotate(240deg) translate(180px) rotate(-240deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(10) { transform: rotate(270deg) translate(180px) rotate(-270deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(11) { transform: rotate(300deg) translate(180px) rotate(-300deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(12) { transform: rotate(330deg) translate(180px) rotate(-330deg); }
    
    .om-symbol {
        font-size: 10rem;
    }
    
    .mandala-1 {
        width: 300px;
        height: 300px;
    }
    
    .mandala-1::before {
        width: 220px;
        height: 220px;
    }
    
    .mandala-1::after {
        width: 150px;
        height: 150px;
    }
    
    .mandala-2 {
        width: 220px;
        height: 220px;
    }
    
    .mandala-3 {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .horoscope-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .zodiac-card {
        padding: 20px;
    }
    
    .zodiac-symbol {
        font-size: 2.2rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:last-child {
        grid-column: span 3;
    }
}

/* Small Tablets */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-features {
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-stats {
        gap: 40px;
    }
    
    .testimonial-stat .number {
        font-size: 2rem;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 18px 20px;
        font-size: 1.1rem;
        width: 100%;
        transition: var(--transition);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 120px 20px 80px;
    }
    
    .hero-bg {
        opacity: 0.6;
    }
    
    .zodiac-wheel {
        width: 300px;
        height: 300px;
    }
    
    .zodiac-wheel .zodiac-symbol {
        font-size: 0.6rem;
        padding: 2px 4px;
    }
    
    .zodiac-wheel .zodiac-symbol:nth-child(1) { transform: rotate(0deg) translate(120px) rotate(0deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(2) { transform: rotate(30deg) translate(120px) rotate(-30deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(3) { transform: rotate(60deg) translate(120px) rotate(-60deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(4) { transform: rotate(90deg) translate(120px) rotate(-90deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(5) { transform: rotate(120deg) translate(120px) rotate(-120deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(6) { transform: rotate(150deg) translate(120px) rotate(-150deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(7) { transform: rotate(180deg) translate(120px) rotate(-180deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(8) { transform: rotate(210deg) translate(120px) rotate(-210deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(9) { transform: rotate(240deg) translate(120px) rotate(-240deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(10) { transform: rotate(270deg) translate(120px) rotate(-270deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(11) { transform: rotate(300deg) translate(120px) rotate(-300deg); }
    .zodiac-wheel .zodiac-symbol:nth-child(12) { transform: rotate(330deg) translate(120px) rotate(-330deg); }
    
    .zodiac-wheel::before {
        width: 250px;
        height: 250px;
    }
    
    .zodiac-wheel::after {
        width: 200px;
        height: 200px;
    }
    
    .om-symbol {
        font-size: 6rem;
        top: 5%;
        left: 2%;
    }
    
    .mandala-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }
    
    .mandala-1::before {
        width: 150px;
        height: 150px;
    }
    
    .mandala-1::after {
        width: 100px;
        height: 100px;
    }
    
    .mandala-2 {
        width: 150px;
        height: 150px;
        bottom: -30px;
        left: -30px;
    }
    
    .mandala-3 {
        width: 100px;
        height: 100px;
    }
    
    .lotus {
        font-size: 1.5rem;
    }
    
    .lotus-2 {
        font-size: 1.2rem;
    }
    
    .lotus-3 {
        font-size: 1.3rem;
    }
    
    .diya {
        font-size: 1.5rem;
    }
    
    .star {
        display: none;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 8px 12px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Sections Mobile */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .title-divider::before,
    .title-divider::after {
        width: 40px;
    }
    
    .about,
    .services,
    .problems,
    .horoscope,
    .testimonials,
    .faq,
    .contact {
        padding: 70px 0;
    }
    
    /* About Mobile */
    .about-description {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 0.95rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-category {
        padding: 25px 20px;
    }
    
    .service-header h3 {
        font-size: 1.2rem;
    }
    
    .service-list li {
        padding: 8px 0;
        font-size: 0.95rem;
    }
    
    /* Problems Mobile */
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .problem-card {
        padding: 20px 15px;
    }
    
    .problem-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .problem-card h3 {
        font-size: 0.85rem;
    }
    
    /* Horoscope Mobile */
    .horoscope {
        padding: 70px 0;
    }
    
    .horoscope-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .zodiac-card {
        padding: 18px 12px;
    }
    
    .zodiac-symbol {
        font-size: 2rem;
    }
    
    .zodiac-name {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .zodiac-prediction {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .zodiac-details {
        gap: 8px;
    }
    
    .zodiac-detail-value {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .zodiac-detail-label {
        font-size: 0.65rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-stats {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .testimonial-stat {
        min-width: 120px;
    }
    
    .stars {
        font-size: 1.2rem;
    }
    
    .rating {
        font-size: 1.6rem;
    }
    
    .testimonial-stat .number {
        font-size: 1.8rem;
    }
    
    .testimonial-stat p {
        font-size: 0.85rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-content {
        padding: 25px 20px;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    /* FAQ Mobile */
    .faq-list {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question span {
        flex: 1;
        padding-right: 10px;
    }
    
    .faq-question i {
        font-size: 0.8rem;
    }
    
    .faq-answer p {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }
    
    .footer-section:last-child {
        grid-column: auto;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .footer-section > p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section h4 {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px 0;
        font-size: 0.8rem;
    }
    
    /* Floating Buttons Mobile */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 15px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.78rem;
        padding: 6px 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .problem-card {
        padding: 15px 10px;
    }
    
    .problem-icon {
        font-size: 1.8rem;
    }
    
    .problem-card h3 {
        font-size: 0.78rem;
    }
    
    .horoscope-grid {
        gap: 10px;
    }
    
    .zodiac-card {
        padding: 15px 10px;
    }
    
    .zodiac-symbol {
        font-size: 1.8rem;
    }
    
    .zodiac-name {
        font-size: 0.9rem;
    }
    
    .zodiac-prediction {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 80px 12px 20px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .feature-item {
        font-size: 0.72rem;
        padding: 5px 8px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .about,
    .services,
    .problems,
    .horoscope,
    .testimonials,
    .faq,
    .contact {
        padding: 50px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .horoscope-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .zodiac-details {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 12px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 75px;
        right: 15px;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }
    
    .zodiac-wheel {
        display: none;
    }
    
    .hero-badge {
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        margin-bottom: 5px;
    }
    
    .hero-tagline {
        margin-bottom: 15px;
    }
    
    .hero-features {
        margin-bottom: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .service-category:hover {
        transform: none;
    }
    
    .problem-card:hover {
        transform: none;
    }
    
    .zodiac-card:hover {
        transform: none;
    }
    
    .testimonial-card:hover {
        transform: none;
    }
    
    .social-link:hover {
        transform: none;
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
    
    .back-to-top:hover {
        transform: none;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .zodiac-wheel {
        border-width: 1px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .scroll-indicator,
    .hero-bg {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 20px;
        background: none;
        color: #000;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-tagline {
        color: #000;
    }
    
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
    
    .zodiac-wheel {
        animation: none;
    }
    
    .logo-symbol {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode variables */
    /*
    :root {
        --background: #1a1a1a;
        --white: #2d2d2d;
        --text-dark: #ffffff;
        --text-light: #b0b0b0;
    }
    */
}

/* Safe Area for Notched Devices */
@supports (padding: max(0px)) {
    /* .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    } */
    
    .hero {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* Tablet Landscape Specific */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-features {
        max-width: 600px;
    }
    
    .horoscope-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop Large */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 12px 24px;
        font-size: 1.05rem;
    }
}

/* Desktop Extra Large */
@media (min-width: 1600px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .zodiac-wheel {
        width: 700px;
        height: 700px;
    }
}
