@import url('bootstrap.min.css');
@import url('aos.min.css');

/* ============================================================
   Astrology Platform — Premium 2026 Design System
   ============================================================ */

:root {
    --primary: #FF8C00;
    --primary-dark: #E67E00;
    --secondary: #FFC107;
    --secondary-light: #FFD54F;
    --bg: #FFFFFF;
    --bg-warm: #FFFBF5;
    --bg-cream: #FFF8EE;
    --text: #222222;
    --text-muted: #666666;
    --text-light: #999999;
    --glass: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 2px 8px rgba(255, 140, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(34, 34, 34, 0.08);
    --shadow-lg: 0 20px 60px rgba(255, 140, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 193, 7, 0.25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    --font-sans: 'Poppins', 'Inter', 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-display: 'Cinzel', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

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

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; }

.hs-tool-img,
.hs-service-img,
.hs-feature-img,
.hs-stats-deco,
.hs-astro-img,
.hs-blog-row-img,
.hs-testimonial-photo {
    background: transparent;
    object-fit: contain;
}

/* ---- Utilities ---- */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-warm { background: var(--bg-warm); }
.bg-cream { background: var(--bg-cream); }

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* ---- Buttons ---- */
.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-brand-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.35);
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.45);
    color: #fff;
}

.btn-brand-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.btn-brand-outline:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: var(--text);
}

.btn-brand-ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid transparent;
}

.btn-brand-ghost:hover { color: var(--primary); }

.btn-magnetic { will-change: transform; }

/* ---- Glass Cards ---- */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.premium-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 140, 0, 0.12);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,140,0,0.4), rgba(255,193,7,0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.icon-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: var(--shadow-glow);
}

/* ---- Navbar ---- */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 1.25rem 0;
    transition: all var(--transition);
}

.site-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.125rem;
}

.nav-link-custom {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    padding: 0.5rem 0.875rem !important;
    border-radius: var(--radius-full);
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.nav-link-custom:hover {
    color: var(--primary) !important;
    background: rgba(255, 140, 0, 0.08);
}

.nav-link-custom.active {
    color: #fff !important;
    background: linear-gradient(135deg, #FF8C00 0%, #FFC107 100%);
    box-shadow: 0 4px 18px rgba(255, 140, 0, 0.35), 0 2px 8px rgba(255, 193, 7, 0.2);
}

.nav-link-custom.active:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #FF8C00 0%, #FFC107 100%);
    box-shadow: 0 6px 22px rgba(255, 140, 0, 0.42), 0 3px 10px rgba(255, 193, 7, 0.28);
    transform: translateY(-1px);
}

/* ---- Hero Section ---- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(255, 140, 0, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 60%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 1.5rem 0;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

/* ---- 3D Cosmic Scene ---- */
.cosmic-scene {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 520px;
    margin: 0 auto;
}

.cosmic-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,193,7,0.2) 0%, transparent 70%);
    filter: blur(40px);
}

.zodiac-wheel {
    position: absolute;
    inset: 5%;
    animation: slow-rotate 60s linear infinite;
}

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

.floating-element {
    position: absolute;
    animation: float 4s ease-in-out infinite;
}

.floating-element.delay-1 { animation-delay: 1s; }
.floating-element.delay-2 { animation-delay: 2s; }

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

.crystal-ball {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff8e7, var(--secondary), var(--primary));
    box-shadow: var(--shadow-glow), inset 0 -10px 20px rgba(255,140,0,0.2);
}

.moon-element {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff8e7, var(--secondary));
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.5);
}

.planet-dot {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 15px currentColor;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.6;
    animation: twinkle 3s ease-in-out infinite;
}

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

/* ---- Wave Separator ---- */
.wave-separator {
    position: relative;
    height: 80px;
    margin-top: -1px;
}

.wave-separator svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    background: #fff;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ---- Section Spacing ---- */
.section-padding { padding: 5rem 0; }
.section-padding-lg { padding: 6rem 0; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

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

/* ---- Service Cards ---- */
.service-card { padding: 2rem; height: 100%; }
.service-card h3 { font-size: 1.125rem; margin: 1.25rem 0 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- Astrologer Cards ---- */
.astro-card-header {
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.astro-avatar {
    position: absolute;
    bottom: -24px;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}

.astro-card-body { padding: 2rem 1.5rem 1.5rem; }
.online-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.9);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
}

/* ---- Testimonials ---- */
.testimonial-card { padding: 2rem; }
.testimonial-stars { color: var(--secondary); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9375rem; color: var(--text-muted); font-style: italic; line-height: 1.7; }

/* ---- Blog Cards ---- */
.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    position: relative;
    overflow: hidden;
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

/* ---- FAQ Accordion ---- */
.faq-item {
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.faq-question:hover { background: rgba(255, 140, 0, 0.04); }

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

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

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

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #ff6b35, var(--secondary));
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Newsletter ---- */
.newsletter-section {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.newsletter-input {
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full);
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    transition: border-color var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

/* ---- Footer ---- */
.site-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 4rem 0 2rem;
}

.site-footer:not(.site-footer-premium) h5 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    color: #888;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.footer-link:hover { color: var(--secondary); }

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all var(--transition);
}

.social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 140, 0, 0.1);
}

/* ---- Premium Footer ---- */
.site-footer-premium {
    background: #fdfaf5;
    padding: 0;
    color: #6b7280;
}

.footer-premium-inner {
    padding: 3.5rem 0 2.75rem;
    position: relative;
    overflow: hidden;
    background: #fdfaf5;
}

.footer-zodiac-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 140, 0, 0.05);
    pointer-events: none;
    opacity: 0.4;
}

.footer-zodiac-watermark::before,
.footer-zodiac-watermark::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 140, 0, 0.04);
}

.footer-zodiac-watermark::before { inset: 50px; }
.footer-zodiac-watermark::after { inset: 100px; }

.footer-brand-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}

.footer-brand-premium:hover { color: #1a1a1a; opacity: 0.85; }

.footer-brand-premium .footer-brand-icon { color: var(--primary); }

.footer-tagline {
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-about {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 1.25rem;
    color: #6b7280;
}

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

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 140, 0, 0.22);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.footer-social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer-premium h5.footer-col-title {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1.15rem;
    line-height: 1.3;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-link-premium {
    display: block;
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.35rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link-premium:hover {
    color: var(--primary);
    transform: translateX(3px);
}

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

.footer-contact-premium {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.8125rem;
    color: #4b5563;
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.footer-contact-premium a {
    color: #4b5563;
    transition: color 0.3s ease;
}

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

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

.footer-bottom-premium {
    background: #f5f0e8;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding: 1.15rem 0;
    font-size: 0.8125rem;
    color: #6b7280;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-inner > p { color: #6b7280; }

.footer-bottom-links a { color: #6b7280; transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-bottom-links span { margin: 0 0.5rem; opacity: 0.35; }

.footer-container { z-index: 1; }

.footer-app-badges { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-app-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 180px;
    transition: transform 0.3s ease;
}

.footer-app-badge-light:hover { color: #fff; transform: translateY(-2px); }
.footer-app-badge-light small { display: block; font-size: 0.6rem; opacity: 0.8; }
.footer-app-badge-light strong { font-size: 0.8rem; }

.footer-chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.2rem 0.7rem 0.8rem;
    background: #fff;
    color: #1a1a1a;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-chat-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

.footer-chat-icon-wrap {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.footer-chat-online {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 9px;
    height: 9px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

@media (max-width: 767.98px) {
    .footer-premium-inner { padding: 2.75rem 0 2rem; }

    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .footer-chat-text { display: none; }

    .footer-chat-widget { padding: 0.75rem; border-radius: 50%; }
}

/* ---- Dashboard Layout ---- */
.dashboard-sidebar {
    width: 260px;
    min-height: 100vh;
    background: #1a1a1a;
    color: #aaa;
    position: fixed;
    left: 0;
    top: 0;
    padding: 1.5rem;
    z-index: 1000;
}

.dashboard-content {
    margin-left: 260px;
    padding: 2rem;
    min-height: 100vh;
    background: var(--bg-warm);
}

.dashboard-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 140, 0, 0.08);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    transition: all var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 140, 0, 0.15);
    color: var(--secondary);
}

/* ---- Admin Panel ---- */
.admin-stat-card {
    background: linear-gradient(135deg, #fff, var(--bg-cream));
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.admin-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

/* ---- Auth Pages ---- */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg));
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 2.5rem;
}

.form-control-custom {
    border: 2px solid rgba(255, 140, 0, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition);
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

/* ---- Tool Pages ---- */
.tool-form-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 2.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .dashboard-sidebar { transform: translateX(-100%); }
    .dashboard-sidebar.open { transform: translateX(0); }
    .dashboard-content { margin-left: 0; }
    .hero-section { padding-top: 6rem; text-align: center; }
    .hero-subtitle { margin: 0 auto 2rem; }
}

@media (max-width: 767.98px) {
    .section-padding { padding: 3.5rem 0; }
    .cta-banner { padding: 3rem 1.5rem; }
}
