:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --gold: #818CF8;
    /* Primary */
    --gold-hover: #6366f1;
    /* Primary Hover */
    --card-bg: #111;
    --border-color: #333;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--gold);
}

h1 {
    font-size: 2.0rem;
    margin-bottom: 20px;
    text-transform: capitalize;
}

h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    color: var(--gold);
}

h4 {
    font-size: 1.3rem;
    margin-top: 20px;
    color: var(--gold);
    font-family: 'Cinzel Decorative', cursive;
}

p,
li {
    font-size: 1.1rem;
    line-height: 1.6;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--gold-hover);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.site-header {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--gold);
    padding: 10px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.logo {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.logo-img {
    width: 38px;
    height: 38px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(15deg) scale(1.1);
}

/* Navigation Menu */
.main-nav {
    display: flex;
    margin-left: auto;
    /* Pushes nav to the right */
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

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

/* Header Calculator */
.header-calc {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.header-calc select {
    background: transparent;
    border: none;
    color: #eee;
    font-size: 0.85rem;
    padding: 5px 10px;
    cursor: pointer;
    outline: none;
}

.header-calc select:focus {
    color: var(--gold);
}

.header-calc select option {
    background-color: #111;
    color: #fff;
}

.header-calc button {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.header-calc button:hover {
    background: #fff;
    transform: scale(1.05);
}

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

select,
button {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    background: #222;
    color: #fff;
    font-family: 'Lato', sans-serif;
}

button {
    background: var(--gold);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

button:hover {
    background: var(--gold-hover);
}

.content-box {
    background: transparent;
    /* Seamless background */
    padding: 10px 0;
    /* Minimal vertical spacing */
    border-radius: 0;
    border: none;
    margin: 0;
    box-shadow: none;
}

/* Summary Table */
.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1a1a1a;
    border: 1px solid #444;
}

.summary-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #333;
}

.summary-table tr:last-child td {
    border-bottom: none;
}

.summary-table td:first-child {
    font-weight: bold;
    color: var(--gold);
    width: 40%;
}

/* Lists */
.list-group {
    margin: 10px 0;
    padding-left: 20px;
}

.list-group li {
    margin-bottom: 5px;
}

.short-desc {
    font-size: 1.1rem;
    margin: 30px 0;
    padding: 20px;
    background: #1a1a1a;
    border-left: 4px solid var(--gold);
    font-style: italic;
}

.highlight {
    color: var(--gold);
    font-weight: bold;
}

/* Footer Redesign */
.site-footer {
    background: #050505;
    padding: 60px 0;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    color: #ccc;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 40px;
    align-items: start;
    /* Ensure columns align to top */
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    /* Align tops */
}

.copyright-bar {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 20px;
}

.footer-logo {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for signs within the col */
    gap: 10px;
    text-align: center;
}

.zodiac-grid a {
    text-align: center;
    border: 1px solid #333;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.zodiac-grid a:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.zodiac-grid a,
.footer-links a,
.social-icons a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: block;
    margin-bottom: 5px;
}

.zodiac-grid a:hover,
.footer-links a:hover,
.social-icons a:hover {
    color: var(--gold);
}

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

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-weight: bold;
}

/* Mobile Adjustments */
@media(max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        text-align: center;
        gap: 30px;
    }

    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols for signs on mobile footer */
        text-align: left;
    }

    .about-col p {
        padding: 0 10px;
    }
}

@media(max-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .main-nav {
        order: 3;
    }

    .header-calc {
        order: 2;
        justify-self: center;
    }

    .logo {
        justify-self: center;
        font-size: 1.1rem;
    }
}

.calculator-form {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.calculator-form select,
.calculator-form button {
    flex: 1 1 auto;
    /* Make inputs grow to fill space */
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 10px;
    }

    /* Center align tool text for mobile premium look */
    .content-box,
    .tool-container,
    .form-group,
    .section-content,
    .feature-item {
        text-align: center;
    }

    .intro-text,
    p,
    li {
        text-align: left !important;
    }

    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        margin-top: 15px;
    }

    h3 {
        font-size: 1.3rem !important;
        line-height: 1.3;
    }

    p,
    li {
        font-size: 1.05rem !important;
    }

    .form-group {
        align-items: center;
    }

    .list-group {
        padding-left: 0;
        list-style-position: inside;
    }
}

.content-box {
    padding: 20px 10px;
    /* Internal spacing only */
    margin: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

h1 {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    margin-bottom: 15px;
    line-height: 1.25;
}

/* Home Calculator Premium Redesign */
.home-calculator-section {
    text-align: center;
    margin: 10px 0 40px;
    /* Reduced top margin from 40px to 10px */
    position: relative;
    padding: 0 0 10px;
    /* Reduced top padding from 20px to 0 */
    /* No background or border for container-less look */
}

.home-calculator-section h2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    border: none;
    font-family: 'Cinzel Decorative', cursive;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.calc-intro {
    color: #ccc;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.main-calc {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.main-calc .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 220px;
    position: relative;
}

.main-calc label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 700;
    opacity: 0.9;
}

/* Seamless Input Style */
.main-calc select {
    width: 100%;
    padding: 15px 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #444;
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Cinzel Decorative', cursive;
    /* Premium font for values */
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23818CF8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 14px auto;
}

.main-calc select:hover {
    border-bottom-color: #666;
}

.main-calc select:focus {
    border-bottom-color: var(--gold);
    background: linear-gradient(to bottom, transparent 95%, rgba(129, 140, 248, 0.1) 100%);
    outline: none;
    transform: translateY(-2px);
}

.main-calc select option {
    background-color: #111;
    color: #fff;
}

/* Premium Button */
.main-calc button.btn-primary {
    padding: 16px 50px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    background: var(--gold);
    color: #050505;
    border: none;
    border-radius: 50px;
    /* Pill shape for elegance */
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 2px;
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
}

.main-calc button.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.4);
    background: #fff;
    color: var(--gold);
}

.main-calc button.btn-primary:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .home-calculator-section h2 {
        font-size: 2rem;
    }

    .main-calc {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        max-width: 100%;
        padding: 0 10px;
    }

    .main-calc .form-group {
        width: 100%;
        max-width: 400px;
    }

    .main-calc button.btn-primary {
        width: 100%;
        max-width: 400px;
        margin-top: 20px;
    }
}

h2 {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    margin-top: 25px;
}

.summary-table td {
    display: table-cell;
    /* Revert to normal table behavior */
    width: auto;
    padding: 10px 5px;
    font-size: 0.9rem;
    border-bottom: 1px solid #333;
    /* Ensure separation */
}

.summary-table td:first-child {
    background: transparent;
    /* Remove the distinct background */
    border-bottom: 1px solid #333;
    width: 35%;
    /* Fixed width for labels */
    padding-top: 10px;
}

.intro-text {
    font-size: 1rem;
    text-align: justify;
    /* Better readability block */
}

/* Ad Containers */
.ad-container {
    margin: 20px auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ad-container::before {
    content: 'Advertisement';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

.header-ad {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-ad {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Floating Share Button */
.floating-share-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-gold 2s infinite;
}

.floating-share-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: #fff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-share-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Dropdown Menu CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0f0f12;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    border: 1px solid #333;
    border-radius: 6px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 0;
}

/* Prevent dropdown logic from breaking hover on touch devices without JS/CSS hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #ccc;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #222;
    text-align: left;
}

.dropdown-content a:last-child {
    border-bottom: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.dropdown-content a:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.dropdown-content a:hover {
    background-color: #1a1a1a;
    color: var(--gold);
}

/* Hide the underline for Dropdown parent link on hover */
.dropdown>a::after {
    display: none;
}

/* Global Page Header (Except Home/Date Pages) */
.page-header {
    text-align: center;
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-header h1 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    /* Responsive H1 */
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-header p {
    font-family: 'Lato', sans-serif;
    color: #d1d5db;
    font-size: clamp(1rem, 3vw, 1.1rem);
    /* Responsive desc */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header {
        padding: 20px 15px 15px;
    }
}

/* Social Share Buttons */
.share-result-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-label {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, opacity 0.2s;
    color: #fff !important;
    min-width: 150px;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: #fff;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-whatsapp {
    background-color: #25D366;
}

.share-facebook {
    background-color: #1877F2;
}

.share-x {
    background-color: #000;
    border: 1px solid #333;
}

/* =========================================
   PREMIUM DATE PAGE REDESIGN
   ========================================= */

/* Hero Section Refinement */
.hero-content {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 60px 20px;
    background: radial-gradient(circle at center, rgba(129, 140, 248, 0.15) 0%, transparent 70%);
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
}

.hero-subtitle {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0px;
    display: block;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(to right, #fff, var(--gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 10px 0 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-date {
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
    letter-spacing: 1px;
}

/* Trait Grid System */
.trait-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0 60px;
}

.trait-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trait-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(129, 140, 248, 0.2);
}

.trait-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.trait-card:hover::before {
    opacity: 1;
}

.trait-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(129, 140, 248, 0.4));
}

.trait-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 8px;
    display: block;
}

.trait-value {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
}

/* Feature/Full Width Cards */
.trait-card.feature-full {
    grid-column: 1 / -1;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    gap: 30px;
}

.trait-card.feature-full .trait-icon {
    font-size: 3.5rem;
    margin-bottom: 0;
}

.trait-card.feature-full .trait-value {
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
    color: #ddd;
}

@media (max-width: 768px) {
    .trait-card.feature-full {
        flex-direction: column;
        text-align: center;
    }
}

/* Zodiac Highlight Section */
.zodiac-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(to right, rgba(129, 140, 248, 0.1), transparent, rgba(129, 140, 248, 0.1));
    border-radius: 50px;
    padding: 10px 30px;
    margin: 20px auto;
    width: fit-content;
    border: 1px solid rgba(129, 140, 248, 0.3);
}

.highlight-text {
    color: #fff;
    font-size: 1.2rem;
}

.highlight-sign {
    color: var(--gold);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Article Typography Enhancements */
.article-section h3 {
    font-size: 1.8rem;
    color: var(--gold);
    border-bottom: 2px solid rgba(129, 140, 248, 0.2);
    padding-bottom: 10px;
    margin-top: 50px;
    text-align: center;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #d1d5db;
    margin-bottom: 25px;
}

.article-section ul li {
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.article-section strong {
    color: #fff;
}

/* Global FAQ Styles */
.faq-section {
    margin-top: 50px;
}

.faq-section h2 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.faq-question {
    margin-bottom: 25px;
}

.faq-question h3 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.faq-answer {
    margin: 0;
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 1.05rem;
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 5px;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .main-nav {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .header-calc {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
}

/* Floating Social Sidebar - Premium Glassmorphism */
.social-share-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    padding: 12px;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sidebar-label {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    opacity: 0.8;
}

.sidebar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-icon:hover {
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    filter: brightness(1.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Sidebar Brand Color Hover Effects with Glow */
.sidebar-icon.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.sidebar-icon.facebook:hover {
    background: #1877F2;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.5);
}

.sidebar-icon.x-twitter:hover {
    background: #000;
    box-shadow: 0 0 25px rgba(129, 140, 248, 0.4);
    border-color: var(--gold);
}

.sidebar-icon.copy-link:hover {
    background: var(--gold);
    box-shadow: 0 0 25px rgba(129, 140, 248, 0.5);
}

.sidebar-icon.copy-link.success {
    background: #4ade80 !important;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.7);
    border-color: #fff;
}

/* Transform Sidebar to Bottom Bar on Mobile/Tablet */
@media (max-width: 1100px) {
    .social-share-sidebar {
        display: flex;
        flex-direction: row;
        position: fixed;
        left: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        justify-content: center;
        padding: 12px 10px;
        border-top: 1px solid rgba(129, 140, 248, 0.3);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
        gap: 15px;
        z-index: 9999;
    }

    .sidebar-label {
        display: none;
    }

    .sidebar-icon {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* Ensure content isn't covered by the bar */
    body {
        padding-bottom: 70px !important;
    }
}

/* Social Share Section - Premium Pillar style site-wide */
.social-share-section {
    margin: 80px 0 40px;
    text-align: center;
    width: 100%;
    padding: 60px 20px;
    background: radial-gradient(circle at center, rgba(129, 140, 248, 0.08) 0%, transparent 70%);
    border-top: 1px solid rgba(129, 140, 248, 0.1);
}

.social-share-section .share-title {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 5px;
    margin-bottom: 35px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
}

.share-pills {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.share-pill {
    padding: 12px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.share-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.share-pill:hover::before {
    left: 100%;
}

.share-pill svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.share-pill:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
}

/* Brand Gradients */
.share-pill.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.share-pill.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C4D9C 100%);
}

.share-pill.x-twitter {
    background: linear-gradient(135deg, #14171A 0%, #000000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-pill.copy-link {
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
}

.share-pill.copy-link.success {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%) !important;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
}

@media (max-width: 768px) {
    .share-pills {
        gap: 15px;
    }

    .share-pill {
        padding: 10px 22px;
        font-size: 0.9rem;
        flex: 1 1 calc(50% - 15px);
        max-width: 200px;
        justify-content: center;
    }

    .social-share-section .share-title {
        font-size: 1.1rem;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .share-pill {
        flex: 1 1 100%;
        max-width: 100%;
    }
}