/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-deep: #070312;
    --bg-dark: #0f0724;
    --bg-card: rgba(21, 10, 43, 0.65);
    --gold: #D4AF37;
    --gold-glow: #ffdf6d;
    --gold-dark: #aa7c11;
    --purple-glow: #8a2be2;
    --purple-light: #b39ddb;
    --text-light: #ffffff;
    --text-muted: #cbbbe3;
    --border-color: rgba(212, 175, 55, 0.2);
    --border-glow: rgba(212, 175, 55, 0.4);
    
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', Helvetica, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
    --shadow-gold-strong: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-glow), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-glow {
    color: var(--gold-glow);
    text-shadow: 0 0 10px rgba(255, 223, 109, 0.5);
}

.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.15em; }
.w-full { width: 100%; }

/* ==========================================================================
   CELESTIAL BACKGROUNDS & STARDUST
   ========================================================================== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #11052c 0%, var(--bg-deep) 100%);
}

/* Custom CSS Stars */
.stars-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.25;
    animation: stardust-pulse 10s infinite alternate;
}

.nebula-overlay {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
}

@keyframes stardust-pulse {
    0% { opacity: 0.2; }
    100% { opacity: 0.35; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 3, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.sub-logo {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-light);
    opacity: 0.8;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-glow));
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-deep) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: var(--shadow-gold);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
    color: var(--bg-deep) !important;
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-sm {
    background-color: #25d366;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-sm:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

.btn-call {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-deep);
    box-shadow: var(--shadow-gold);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-glow));
    color: var(--bg-deep);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

/* ==========================================================================
   GLASSMORPHIC CARDS
   ========================================================================== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-premium {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Visual & Orbs */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.celestial-orb-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.astrologer-avatar-box {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.4);
    border: 3px solid var(--gold);
}

.astrologer-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.astrologer-avatar-box:hover img {
    transform: scale(1.05);
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: spin linear infinite;
}

.ring-1 {
    width: 320px;
    height: 320px;
    border-top: 1px solid var(--gold);
    animation-duration: 12s;
}

.ring-2 {
    width: 290px;
    height: 290px;
    border-left: 1.5px dashed rgba(212, 175, 55, 0.3);
    animation-duration: 8s;
    animation-direction: reverse;
}

.ring-3 {
    width: 350px;
    height: 350px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    animation-duration: 20s;
}

.badge-online {
    position: absolute;
    bottom: -10px;
    background: rgba(7, 3, 18, 0.9);
    border: 1px solid #25d366;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px #25d366; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* ==========================================================================
   TRUST SEALS BANNER
   ========================================================================== */
.trust-banner {
    background: linear-gradient(to right, rgba(15, 7, 36, 0.9), rgba(21, 10, 43, 0.95), rgba(15, 7, 36, 0.9));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 280px;
}

.trust-item i {
    font-size: 2.2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

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

/* ==========================================================================
   SECTION TITLE
   ========================================================================== */
.section-title {
    margin-bottom: 3.5rem;
}

.section-title span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-light);
    line-height: 1.2;
}

.subtitle-desc {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.about-image-wrapper:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.about-astro-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-astro-img {
    opacity: 1;
}

.card-mystic {
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.15);
    background: radial-gradient(circle at 0% 0%, rgba(138, 43, 226, 0.15), var(--bg-card));
    position: relative;
    overflow: hidden;
}

.card-mystic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--purple-glow));
}

.card-mystic h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.card-mystic .subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.divider-gold {
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.about-quote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    border-radius: 0 8px 8px 0;
}

.about-quote i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.6;
}

.about-quote p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.about-quote cite {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    display: block;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(21, 10, 43, 0.4) 0%, transparent 80%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--purple-glow), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-icon-badge {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.service-card:hover .service-icon-badge {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.service-icon-badge i {
    font-size: 1.1rem;
    color: var(--bg-deep);
}

.service-card-content {
    padding: 1.5rem 1.25rem 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.service-card-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    color: var(--text-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Call to Action Banner */
.call-to-action-banner {
    background: linear-gradient(135deg, rgba(21, 10, 43, 0.9), rgba(15, 7, 36, 0.95)),
                border-box;
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.call-to-action-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.call-to-action-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.call-to-action-banner p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   INTERACTIVE WIDGETS SECTION
   ========================================================================== */
.interactive-section {
    padding: 100px 0;
    background: rgba(7, 3, 18, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Horoscope Widget */
.horoscope-widget {
    padding-bottom: 80px;
}

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

.zodiac-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.25rem 0.5rem;
    border-radius: 10px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.zodiac-btn i {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.8;
}

.zodiac-btn span {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    opacity: 0.7;
}

.zodiac-btn:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--border-glow);
    color: var(--text-light);
    transform: translateY(-3px);
}

.zodiac-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(138, 43, 226, 0.15));
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.zodiac-result-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--border-color);
}

.zodiac-result-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.zodiac-result-box h3 i {
    color: var(--gold);
}

.zodiac-result-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.zodiac-upay-box {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.zodiac-upay-box strong {
    color: var(--gold);
}

/* Kundli Milan Widget */
.kundli-widget {
    padding-top: 80px;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.kundli-matcher-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.partner-form h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-form h3 i.fa-mars { color: #5bc0de; }
.partner-form h3 i.fa-venus { color: #f0ad4e; }

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-group select option {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.vs-heart {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.vs-heart i {
    font-size: 2.2rem;
    color: #ff3366;
    filter: drop-shadow(0 0 8px rgba(255, 51, 102, 0.5));
}

.animated-heart {
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

.match-action {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.match-result {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding-top: 2.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeIn 0.6s ease-in-out forwards;
}

.score-radial {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
}

.score-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-glow);
}

.score-max {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.match-text {
    text-align: left;
}

.match-text h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.match-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   TESTIMONIALS / REVIEWS SECTION
   ========================================================================== */
.reviews {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.review-card {
    position: relative;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.review-comment {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    object-fit: cover;
}

.client-info h4 {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.client-city {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 90%, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
}

.contact-box {
    padding: 0;
    overflow: hidden;
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-info-block {
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, rgba(21, 10, 43, 0.9), rgba(7, 3, 18, 0.95));
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-block h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-info-block p {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-link-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.03);
}

.info-link-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--border-color);
}

.info-link-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-link-item i.fa-phone-alt {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.info-link-item i.fa-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.info-link-item div {
    display: flex;
    flex-direction: column;
}

.info-link-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.info-link-item strong {
    font-size: 1.15rem;
    color: var(--text-light);
}

.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #25d366;
}

.contact-form-block {
    padding: 3.5rem 3rem;
}

.contact-form-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #04020a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 7rem; /* extra space at bottom for mobile floating bar */
    color: var(--text-muted);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .gold-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.footer-disclaimer {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 0.75rem;
    line-height: 1.6;
    opacity: 0.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: transparent;
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
}

/* ==========================================================================
   FLOATING ACTION BAR FOR MOBILE
   ========================================================================== */
.floating-quick-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none; /* Shown only on mobile screens */
    grid-template-columns: 1fr 1fr;
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
}

.floating-quick-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.quick-btn-call {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-deep);
}

.quick-btn-wa {
    background-color: #25d366;
    color: white;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Screens (1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .zodiac-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .kundli-matcher-grid {
        grid-template-columns: 1fr;
    }
    
    .vs-heart {
        padding: 1rem 0;
    }
    
    .match-action {
        grid-column: span 1;
    }
    
    .match-result {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .match-text {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-block {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Mobile Screens (768px) */
@media (max-width: 768px) {
    .header {
        padding: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 5, 23, 0.98);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 0;
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.5s ease, opacity 0.4s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }
    
    .nav-links a.nav-cta {
        border-radius: 0;
        background: transparent;
        color: var(--gold) !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: 2;
    }
    
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .floating-quick-bar {
        display: grid;
    }
}

/* Small Mobiles (480px) */
@media (max-width: 480px) {
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-info-block, 
    .contact-form-block {
        padding: 2.5rem 1.5rem;
    }
    
    .call-to-action-banner {
        padding: 2rem 1.5rem;
    }
    
    .cta-banner-buttons .btn {
        width: 100%;
    }
}
