/* --------------------------------------------------------------------------
   REKHAASTROLOGY.IN - MAIN STYLESHEET
   Cosmic Dark & Gold Premium Theme
   -------------------------------------------------------------------------- */

:root {
    --bg-main: #0a0814;
    --bg-card: #131024;
    --bg-card-hover: #1c1836;
    --gold-primary: #f39c12;
    --gold-bright: #ffd700;
    --gold-dark: #b8860b;
    --gold-glow: rgba(243, 156, 18, 0.25);
    --gold-gradient: linear-gradient(135deg, #f39c12 0%, #ffe066 50%, #d4af37 100%);
    --purple-accent: #6c5ce7;
    --text-primary: #ffffff;
    --text-secondary: #b3b7c6;
    --text-muted: #7c8298;
    --border-color: rgba(243, 156, 18, 0.2);
    --border-hover: rgba(255, 215, 0, 0.6);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

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

/* Background Stars Animation */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(1.5px 1.5px at 10% 20%, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 30% 60%, rgba(255,215,0,0.8), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 70% 30%, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 85% 80%, rgba(243,156,18,0.7), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 300px 300px;
    opacity: 0.4;
}

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

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 8, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(243, 156, 18, 0.15);
    padding: 16px 0;
    transition: var(--transition);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-symbol {
    color: var(--gold-primary);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-bright);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 24px 80px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 20%, rgba(243, 156, 18, 0.18) 0%, rgba(10, 8, 20, 0) 70%);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 156, 18, 0.12);
    border: 1px solid var(--border-color);
    padding: 6px 18px;
    border-radius: 30px;
    color: var(--gold-bright);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #0a0814;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(243, 156, 18, 0.08);
}

.btn-primary-sm {
    background: var(--gold-gradient);
    color: #0a0814;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Stats Counter Bar */
.stats-counter-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-bright);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Section Header Styles */
.section {
    padding: 90px 0;
}

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

.sub-heading {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.heading-line::before, .heading-line::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.5;
}

.heading-line span {
    color: var(--gold-bright);
    font-size: 0.9rem;
}

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

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.award-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-bright);
    box-shadow: 0 12px 30px var(--gold-glow);
}

.award-badge-num {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(243, 156, 18, 0.15);
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.award-icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: radial-gradient(circle, rgba(243,156,18,0.2) 0%, rgba(19,16,36,0) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-bright);
}

.award-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.award-presenter {
    color: var(--gold-primary);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.award-year {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* Testimonials Section */
.filter-controls {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-field {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-field input {
    width: 100%;
    padding: 14px 45px 14px 48px;
    background: rgba(10, 8, 20, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.search-field input:focus {
    border-color: var(--gold-bright);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.2);
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    display: none;
}

.clear-search:hover {
    color: var(--text-primary);
}

.category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(10, 8, 20, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.pill:hover {
    border-color: var(--gold-primary);
    color: var(--gold-bright);
}

.pill.active {
    background: var(--gold-gradient);
    color: #0a0814;
    font-weight: 700;
    border-color: transparent;
}

.results-info {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Video Grid Cards */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-bright);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #1a1630;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    width: 54px;
    height: 54px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0814;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.6);
    transition: var(--transition);
}

.video-card:hover .play-overlay {
    transform: scale(1.15);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.video-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.client-location {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.video-tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tag-badge {
    background: rgba(243, 156, 18, 0.12);
    color: var(--gold-bright);
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: capitalize;
    font-weight: 500;
}

.star-rating {
    color: var(--gold-bright);
    font-size: 0.75rem;
}

/* Load More Button */
.load-more-wrapper {
    text-align: center;
    margin-top: 20px;
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold-bright);
    border: 1px solid var(--gold-primary);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold-outline:hover {
    background: var(--gold-gradient);
    color: #0a0814;
}

/* CTA Section */
.cta-section {
    padding: 60px 24px 100px;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(243,156,18,0.15) 0%, rgba(19,16,36,0.9) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.cta-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.btn-gold-lg {
    background: var(--gold-gradient);
    color: #0a0814;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Footer */
.footer {
    background: #06050e;
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-bright);
}

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

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

/* Video Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-wrapper {
    width: 100%;
    max-width: 850px;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gold-primary);
    color: #000;
}

.modal-body {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-footer-info {
    padding: 16px 20px;
    background: var(--bg-card);
}

.modal-footer-info h4 {
    color: var(--gold-bright);
    font-size: 1.1rem;
}

.modal-footer-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .stats-counter-bar {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider {
        width: 60%;
        height: 1px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
