* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --cosmic-blue: #1a1a3e;
    --deep-purple: #0f0c29;
    --nebula-pink: #ff006e;
    --star-white: #ffffff;
    --glow-cyan: #00f5ff;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: var(--star-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* FALLING STARS ANIMATION - CSS ONLY - Multiple Layers */
body::before {
    content: '';
    position: fixed;
    top: -10px;
    left: 0;
    width: 5px;
    height: 5px;
    background: gold;
    border-radius: 50%;
    box-shadow: 
        0 0 15px gold,
        100px 50px 0 0 gold,
        200px 100px 0 0 orange,
        300px 20px 0 0 yellow,
        400px 80px 0 0 gold,
        500px 150px 0 0 orange,
        600px 30px 0 0 yellow,
        700px 120px 0 0 gold,
        800px 60px 0 0 orange,
        900px 140px 0 0 yellow,
        1000px 90px 0 0 gold,
        1100px 10px 0 0 orange,
        1200px 170px 0 0 yellow,
        1300px 110px 0 0 gold,
        1400px 45px 0 0 orange,
        50px 200px 0 0 gold,
        150px 250px 0 0 orange,
        250px 180px 0 0 yellow,
        350px 220px 0 0 gold,
        450px 190px 0 0 orange,
        550px 240px 0 0 yellow,
        650px 210px 0 0 gold,
        750px 270px 0 0 orange,
        850px 230px 0 0 yellow,
        950px 280px 0 0 gold,
        1050px 260px 0 0 orange;
    animation: falling 6s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

body::after {
    content: '';
    position: fixed;
    top: -10px;
    left: 0;
    width: 5px;
    height: 5px;
    background: gold;
    border-radius: 50%;
    box-shadow: 
        0 0 15px gold,
        120px 70px 0 0 orange,
        240px 130px 0 0 yellow,
        360px 40px 0 0 gold,
        480px 100px 0 0 orange,
        600px 160px 0 0 yellow,
        720px 50px 0 0 gold,
        840px 110px 0 0 orange,
        960px 170px 0 0 yellow,
        1080px 80px 0 0 gold,
        1200px 140px 0 0 orange,
        1320px 200px 0 0 yellow,
        1440px 90px 0 0 gold,
        80px 220px 0 0 yellow,
        200px 260px 0 0 gold,
        320px 200px 0 0 orange,
        440px 240px 0 0 yellow,
        560px 290px 0 0 gold,
        680px 250px 0 0 orange,
        800px 300px 0 0 yellow,
        920px 270px 0 0 gold,
        1040px 310px 0 0 orange;
    animation: falling 8s linear infinite 1s;
    pointer-events: none;
    z-index: 9999;
}

@keyframes falling {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0;
    }
}

/* Additional falling stars layers */
#page-wrapper::before {
    content: '';
    position: fixed;
    top: -10px;
    left: 0;
    width: 4px;
    height: 4px;
    background: yellow;
    border-radius: 50%;
    box-shadow: 
        0 0 12px yellow,
        80px 30px 0 0 yellow,
        180px 90px 0 0 gold,
        280px 60px 0 0 orange,
        380px 120px 0 0 yellow,
        480px 40px 0 0 gold,
        580px 100px 0 0 orange,
        680px 70px 0 0 yellow,
        780px 130px 0 0 gold,
        880px 50px 0 0 orange,
        980px 110px 0 0 yellow,
        1080px 80px 0 0 gold,
        1180px 140px 0 0 orange,
        1280px 60px 0 0 yellow,
        1380px 100px 0 0 gold;
    animation: falling 7s linear infinite 2s;
    pointer-events: none;
    z-index: 9999;
}

#page-wrapper::after {
    content: '';
    position: fixed;
    top: -10px;
    left: 0;
    width: 4px;
    height: 4px;
    background: orange;
    border-radius: 50%;
    box-shadow: 
        0 0 12px orange,
        140px 55px 0 0 orange,
        260px 115px 0 0 yellow,
        380px 75px 0 0 gold,
        500px 135px 0 0 orange,
        620px 95px 0 0 yellow,
        740px 155px 0 0 gold,
        860px 85px 0 0 orange,
        980px 145px 0 0 yellow,
        1100px 105px 0 0 gold,
        1220px 165px 0 0 orange,
        1340px 125px 0 0 yellow;
    animation: falling 9s linear infinite 3s;
    pointer-events: none;
    z-index: 9999;
}

#page-wrapper {
    background: #000;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Force page to end at footer */
footer {
    display: block;
    overflow: hidden;
}

footer::after {
    content: '';
    display: block;
    clear: both;
}

section:last-of-type {
    margin-bottom: 0 !important;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 245, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.logo span {
    font-family: 'Tangerine', cursive;
    background: linear-gradient(to right, #FFD700 0%, #FFF 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 2.5rem;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.logo span::before {
    content: 'Psychic Rama';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(to right, #8B4513, #FFD700, #8B4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    opacity: 0.7;
}

#logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    animation: logoFloat 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.nav-menu a {
    color: var(--star-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

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

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

.cta-btn {
    background: linear-gradient(135deg, var(--primary-gold), #ffa500);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--star-white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-background-image {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-image: url('splash-image.jpeg');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Hero Content Section */
.hero-content-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.cosmic-bg-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#stars-canvas {
    width: 100%;
    height: 100%;
}

.nebula-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(138, 43, 226, 0.3), transparent 50%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 191, 255, 0.2), transparent 50%);
    animation: nebulaPulse 8s ease-in-out infinite;
}

@keyframes nebulaPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.trishul-float {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23FFD700" d="M50 10 L50 90 M30 20 L50 10 L70 20 M35 35 L50 25 L65 35 M40 50 C40 50 45 45 50 45 C55 45 60 50 60 50"/></svg>') center/contain no-repeat;
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--glow-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #ffa500);
    color: #000;
}

.glow-btn {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-gold);
    color: var(--star-white);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

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

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

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Services Scroll Section */
.services-scroll {
    position: relative;
    background: #000;
}

.services-container {
    position: relative;
}

.service-panel {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-panel.active {
    opacity: 1;
    transform: translateY(0);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.2), transparent 70%);
    z-index: 0;
}

.service-panel:nth-child(even) .service-bg {
    background: radial-gradient(ellipse at center, rgba(0, 191, 255, 0.2), transparent 70%);
}

.service-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(15, 12, 41, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    min-height: 500px;
}

.service-icon {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border: none;
    box-shadow: none;
    animation: none;
    border-radius: 0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-gold);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #000 0%, var(--deep-purple) 100%);
}

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

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--glow-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.timeline-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 2rem;
    background: var(--cosmic-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--cosmic-blue) 0%, #000 100%);
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

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

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: var(--deep-purple);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--primary-gold);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.info-item span {
    font-size: 2rem;
}

.info-item a {
    color: var(--star-white);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--primary-gold);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-badges img {
    width: 60px;
    height: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--star-white);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.phone-input {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
}

.contact-form button {
    padding: 1.2rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Form Message Styles */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
    display: block;
}

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

/* Footer */
footer {
    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin: 0 !important;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    margin-top: auto !important;
}

/* Stop scrolling after footer */
html, body {
    max-height: 100%;
    overflow-y: auto;
}

body::after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

/* Ensure no content after footer */
footer ~ *:not(script):not(.call-float):not(.whatsapp-float):not(style) {
    display: none !important;
    visibility: hidden !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    font-family: 'Tangerine', cursive;
    font-size: 2rem;
    color: var(--primary-gold);
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

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

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-gold);
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Minimal Service Page */
.service-minimal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
    background: #000;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-minimal p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.service-minimal img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .service-minimal {
        padding: 6rem 1rem 3rem 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-minimal p {
        font-size: 1rem;
        order: 2;
    }
    
    .service-minimal img {
        order: 1;
    }
}

/* Simple Service Page Layout */
.simple-service-page {
    padding: 8rem 2rem 4rem 2rem;
    background: #000;
    min-height: 100vh;
}

.service-simple-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-simple-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.service-simple-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.service-simple-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-align: left;
}

.service-simple-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Locations Section */
.locations-section {
    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.95), rgba(30, 20, 60, 0.95));
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.locations-subtitle {
    text-align: center;
    color: var(--star-white);
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.location-card h3 {
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-card p {
    color: var(--star-white);
    opacity: 0.8;
    font-size: 1rem;
}

.location-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.location-cta p {
    color: var(--star-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Call Float Button */
.call-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.call-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.7);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Disable mouse trail on mobile */
    body {
        pointer-events: auto;
        background: #000;
    }

    #page-wrapper {
        background: #000;
    }

    /* Navigation */
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    #logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(15, 12, 41, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .cta-btn {
        display: none;
    }

    /* Hero Section */
    .hero {
        min-height: 50vh;
    }

    .hero-background-image {
        background-size: cover;
        background-position: center;
    }

    .hero-content-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .trishul-float {
        width: 60px;
        height: 60px;
        animation: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* About Section */
    .about-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-item {
        min-width: 100%;
        padding: 1.5rem;
    }

    .timeline-icon {
        font-size: 3rem;
    }

    .timeline-item h3 {
        font-size: 1.3rem;
    }

    /* Services Section */
    .services-scroll {
        padding: 0;
    }

    .service-panel {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0;
        gap: 0;
    }

    .service-icon {
        min-height: 250px;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .service-text {
        padding: 2rem 1.5rem;
        border-radius: 0 0 20px 20px;
    }

    .service-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Why Choose Section */
    .why-choose {
        padding: 4rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-card p {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonial-carousel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-card p {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 4rem 1rem;
    }

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

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .info-item {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px;
        padding: 0.9rem 1rem;
    }

    .phone-input {
        grid-template-columns: 100px 1fr;
        gap: 0.5rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1.5rem 1rem;
        margin: 0 !important;
        position: relative;
        z-index: 10;
    }

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

    .footer-column h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-logo h3 {
        font-size: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Simple Service Pages */
    .simple-service-page {
        padding: 6rem 1rem 3rem 1rem;
    }

    .service-simple-content h1 {
        font-size: 1.8rem;
    }

    .service-simple-content p {
        font-size: 1rem;
    }

    .service-simple-cta {
        flex-direction: column;
    }

    .service-simple-cta a {
        width: 100%;
    }

    /* Locations Section */
    .locations-section {
        padding: 3rem 1rem 1.5rem 1rem;
        margin-bottom: 0 !important;
    }

    .locations-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .location-card {
        padding: 1.5rem;
    }

    .location-icon {
        font-size: 2.5rem;
    }

    .location-card h3 {
        font-size: 1.3rem;
    }

    .location-cta p {
        font-size: 1rem;
    }

    /* Call Button */
    .call-float {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 20px;
    }

    .call-float svg {
        width: 30px;
        height: 30px;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    /* Simplify animations on mobile */
    .nebula-overlay {
        animation: none;
    }

    #stars-canvas {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    /* Extra small phones */
    .hero-title {
        font-size: 1.6rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .service-icon {
        min-height: 200px;
    }

    .service-content h2 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

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

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

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .phone-input {
        grid-template-columns: 90px 1fr;
    }
}

/* Landscape mode on mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content-section {
        min-height: 80vh;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Service Detail Pages */
.service-detail-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.service-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(15,12,41,0.9) 100%);
    z-index: 1;
}

.service-detail-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.service-detail-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.service-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--deep-purple) 0%, #000 100%);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-main {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-detail-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

.service-detail-main h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-detail-main h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin: 2.5rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

.service-detail-main p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    text-align: justify;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-benefits li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--primary-gold);
    border-radius: 5px;
    font-size: 1.1rem;
}

.service-cta-box {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 191, 255, 0.2));
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    text-align: center;
}

.service-cta-box h3 {
    margin-top: 0;
    font-size: 2rem;
}

.service-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.sidebar-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.service-info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-info-item:last-child {
    border-bottom: none;
}

.service-info-item strong {
    color: var(--primary-gold);
}

.sidebar-contact p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 1rem;
}

.related-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 0.8rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.related-services a:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

/* Make service cards clickable */
.service-panel {
    cursor: pointer;
    transition: all 0.3s;
}

.service-panel:hover .service-content {
    transform: scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3);
}

/* Responsive for service detail pages */
@media (max-width: 968px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-content h1 {
        font-size: 2.5rem;
    }

    .service-detail-main {
        padding: 2rem;
    }

    .service-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Particle Animation */
@keyframes particleFade {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.5) translate(var(--drift, 0), -40px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translate(var(--drift, 0), -80px);
    }
}

.magic-particle {
    position: fixed;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255, 215, 0, 1) 0%, rgba(255, 165, 0, 0.9) 40%, rgba(255, 215, 0, 0.5) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 165, 0, 0.8), 0 0 75px rgba(255, 215, 0, 0.4);
    animation: particleFade 1.2s ease-out forwards;
    --drift: 0px;
}
