@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Reset and Core Variables */
:root {
    --bg-primary: #06050e;
    --bg-secondary: #0c0a1f;
    --bg-card: rgba(18, 15, 41, 0.65);
    --border-color: rgba(212, 175, 55, 0.2);
    --border-color-glow: rgba(212, 175, 55, 0.45);
    --color-gold: #d4af37;
    --color-gold-bright: #ffd700;
    --color-gold-dark: #b8860b;
    --color-text: #f0f0f5;
    --color-text-muted: #b0afc0;
    --color-accent: #8e44ad;
    --color-accent-glow: rgba(142, 68, 173, 0.3);
    
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Twinkling Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0d0a27 0%, var(--bg-primary) 80%);
}

.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: pulse-star 3s infinite ease-in-out;
}

@keyframes pulse-star {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
    border: 1px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Typography & Utility classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: 1px;
}

.gold-text {
    color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #06050e;
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 100%);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-color-glow);
    box-shadow: 0 12px 40px 0 rgba(212, 175, 55, 0.1);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '✦';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    font-size: 1.2rem;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(6, 5, 14, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo span {
    margin-left: 8px;
}

.logo i, .logo svg {
    color: var(--color-gold);
    width: 28px;
    height: 28px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

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

.nav-link:hover {
    color: var(--color-text);
}

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

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

.nav-cta {
    display: inline-block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background-image: linear-gradient(rgba(6, 5, 14, 0.7), rgba(6, 5, 14, 0.95)), url('hero_celestial.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(transparent, var(--bg-primary));
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.hero-subtitle-top {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.hero-subtitle-top::before, .hero-subtitle-top::after {
    content: '✦';
    margin: 0 10px;
    font-size: 0.8rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

/* About Section */
.about {
    background: var(--bg-secondary);
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid var(--border-color);
    background: rgba(18, 15, 41, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    pointer-events: none;
    z-index: -1;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #171337 100%);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.about-badge .number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

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

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

.stat-item h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    color: var(--color-text);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.service-card:hover::after {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.service-icon-box svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-gold);
    fill: none;
    transition: var(--transition-smooth);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.service-card:hover h3 {
    color: var(--color-gold);
}

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

.service-learn-more {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-learn-more svg {
    width: 14px;
    height: 14px;
    fill: var(--color-gold);
    transition: var(--transition-smooth);
}

.service-card:hover .service-learn-more svg {
    transform: translateX(5px);
}

/* Horoscope Section */
.horoscope {
    background: var(--bg-secondary);
}

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

.zodiac-card {
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(18, 15, 41, 0.4);
    transition: var(--transition-smooth);
}

.zodiac-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.05);
}

.zodiac-card.active {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(142, 68, 173, 0.15) 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.zodiac-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zodiac-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.zodiac-card:hover .zodiac-icon svg,
.zodiac-card.active .zodiac-icon svg {
    fill: var(--color-gold-bright);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.zodiac-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.zodiac-date {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.horoscope-display {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.horoscope-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.horoscope-content {
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.horoscope-content.fade-out {
    opacity: 0;
}

.horoscope-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

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

.horoscope-title h3 {
    font-size: 1.8rem;
    color: var(--color-gold);
}

.horoscope-meta {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.horoscope-body {
    font-size: 1.05rem;
    line-height: 1.8;
}

.horoscope-aspects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

.aspect-item {
    font-size: 0.9rem;
}

.aspect-label {
    color: var(--color-text-muted);
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aspect-value {
    font-weight: 600;
    color: var(--color-gold);
}

/* Booking & Consultation Section */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.booking-info p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.booking-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.booking-feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--color-gold);
}

.booking-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-text);
}

.booking-feature-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.booking-form-panel {
    padding: 40px;
}

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

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: rgba(6, 5, 14, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background: rgba(6, 5, 14, 0.85);
}

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

.form-error {
    color: #e74c3c;
    font-size: 0.75rem;
    margin-top: 5px;
    position: absolute;
    bottom: -18px;
    left: 0;
    display: none;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.form-success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success-message svg {
    width: 60px;
    height: 60px;
    stroke: var(--color-gold);
    margin-bottom: 20px;
}

.form-success-message h3 {
    color: var(--color-gold);
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-slider {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
}

.testimonial-card {
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    opacity: 0.05;
}

.testimonial-quote-icon svg {
    width: 80px;
    height: 80px;
    fill: var(--color-gold);
}

.stars-rating {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-arrow {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
    fill: var(--color-text);
}

.slider-arrow:hover svg {
    fill: var(--color-gold);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* Footer Section */
footer {
    background: #030207;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--color-gold);
}

.footer-col p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

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

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--color-text-muted);
    text-decoration: none;
}

.social-icon:hover {
    border-color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--color-gold);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-info-list svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
    fill: none;
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .zodiac-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .about-grid, .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    .about-badge {
        right: 0;
        bottom: -10px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.5s ease-in-out;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .horoscope-display {
        padding: 20px;
    }
    .horoscope-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .horoscope-aspects {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .testimonial-card {
        padding: 30px 10px;
    }
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Multi-Page Specific Styles */
.page-header {
    padding: 160px 0 60px;
    background-image: linear-gradient(rgba(6, 5, 14, 0.8), rgba(6, 5, 14, 0.98)), url('hero_celestial.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Accordion styles */
.faq-section {
    margin-top: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

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

.faq-question svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.faq-question:hover svg {
    stroke: var(--color-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Allow sliding expansion */
    padding-bottom: 10px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--color-gold);
}

/* Zodiac Elements grid styles */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.element-card {
    padding: 30px 20px;
    text-align: center;
}

.element-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-gold);
}

.element-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

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

@media (max-width: 576px) {
    .elements-grid {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Floating Contact Widgets */
.floating-contact-widgets {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
}

.floating-btn {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.floating-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-call {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #06050e;
    border: 1px solid var(--color-gold);
}

.floating-call:hover {
    background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 100%);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.floating-btn svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.floating-call svg {
    fill: none;
    stroke: #06050e;
    stroke-width: 2.2;
}

@media (max-width: 768px) {
    .floating-contact-widgets {
        bottom: 40px;
        right: 40px;
        gap: 15px;
    }
    .floating-btn {
        width: 72px;
        height: 72px;
    }
    .floating-btn svg {
        width: 36px;
        height: 36px;
    }
}

/* Hero Tags styling */
.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
    margin-top: -15px;
}

.hero-tag {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold-bright);
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

.hero-tag:hover {
    border-color: var(--color-gold-bright);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.45);
    background: rgba(212, 175, 55, 0.22);
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .hero-tags {
        gap: 8px;
        margin-bottom: 25px;
    }
    .hero-tag {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
}

/* Global Keyword Highlight */
strong {
    color: var(--color-gold-bright) !important;
    font-weight: 800;
    font-size: 1.05em;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Specializations Section */
.specializations {
    background: linear-gradient(rgba(12, 10, 31, 0.6), rgba(6, 5, 14, 0.8));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

.specializations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.spec-card {
    flex: 1 1 280px;
    max-width: 320px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    border: 1px solid var(--border-color-glow) !important;
    box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.1) !important;
    transition: var(--transition-smooth);
    scroll-margin-top: 100px;
}

.spec-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.spec-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-gold-bright) !important;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.spec-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 0;
}

.spec-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--color-gold-bright) !important;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25) !important;
}

.spec-card:hover .spec-icon {
    background: rgba(212, 175, 55, 0.25) !important;
    border-color: var(--color-gold-bright) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: rotate(15deg);
}

.spec-card:hover h3 {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}



