:root {
    --primary-red: #D2042D;
    --accent-red: #FF3366;
    --primary-black: #000000;
    --dark-grey: #0A0A0A;
    --medium-grey: #1A1A1A;
    --light-grey: #333333;
    --pure-white: #FFFFFF;
    --success-green: #2ecc71;
    --glass-bg: rgba(26, 26, 26, 0.8);
    --gradient-red: linear-gradient(135deg, #FF3366 0%, #D2042D 100%);
}

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

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    background: var(--primary-black);
    color: var(--pure-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

main {
    overflow-x: hidden;
    width: 100%;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* --- Hero Section --- */
.hero-section {
    padding: 100px 5% 40px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(210, 4, 45, 0.1) 0%, transparent 80%);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-section .hero-container {
    max-width: 900px;
    width: 100%;
}

.hero-section h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-section .subtitle {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    margin: 0 auto;
}

/* --- Content Layout --- */
.page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.blog-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.blog-content h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin: 45px 0 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-content h2::before {
    content: '';
    width: 5px;
    height: 28px;
    background: var(--primary-red);
    border-radius: 3px;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: var(--pure-white);
    margin: 30px 0 15px;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul {
    margin-bottom: 25px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.blog-content li {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 15px 15px 45px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.blog-content li:hover {
    background: rgba(210, 4, 45, 0.08);
    border-color: rgba(210, 4, 45, 0.2);
    transform: translateX(5px);
}

.blog-content li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    color: var(--primary-red);
}

.blog-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-content ol li {
    background: none;
    padding: 5px 0 5px 10px;
    border: none;
    list-style: decimal;
    transition: none;
}

.blog-content ol li:hover {
    background: none;
    border-color: transparent;
    transform: none;
}

.blog-content ol li::before {
    content: none;
}

.info-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    margin: 50px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 15px 0;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}
.breadcrumbs a { color: var(--primary-red); text-decoration: none; }
.breadcrumbs span { margin: 0 10px; color: rgba(255,255,255,0.4); }

/* --- FAQ --- */
.faq-section { margin-top: 80px; }
.faq-item {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-question { font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; color: var(--primary-red); }
.faq-answer { color: rgba(255, 255, 255, 0.7); line-height: 1.6; }

/* --- CTA --- */
.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border-radius: 32px;
    border: 1px solid rgba(210, 4, 45, 0.2);
    margin: 80px 0 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 35px; }
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.cta-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(210, 4, 45, 0.4); }
.cta-btn.whatsapp-btn { background: #25D366; }

/* --- Table --- */
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}
.article-table th, .article-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.article-table th {
    background: rgba(210, 4, 45, 0.1);
    color: var(--primary-red);
    font-weight: 700;
}
.article-table tr:last-child td {
    border-bottom: none;
}

/* --- Footer --- */
footer {
    background: var(--dark-grey);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 10;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}
.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}
.footer-section p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; }
.footer-section ul li a { 
    color: rgba(255,255,255,0.7); 
    text-decoration: none; 
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-section ul li a:hover { color: var(--primary-red); transform: translateX(5px); }

.social-icons { display: flex; gap: 15px; margin-top: 25px; }
.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-icons a:hover { background: var(--primary-red); border-color: var(--primary-red); transform: translateY(-5px); }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6); }

/* --- Mobile Optimization --- */
@media (max-width: 768px) {
    .hero-section { padding: 120px 5% 50px; min-height: auto; }
    .section-padding { padding: 40px 0; }
    .blog-content h2 { font-size: 1.6rem; }
    .info-box { padding: 25px 20px; margin: 30px 0; }
    .cta-box { padding: 50px 20px; margin-top: 40px; margin-bottom: 20px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-btn { width: 100%; justify-content: center; }
    .footer-content { gap: 35px; }
    .whatsapp-float { width: 55px; height: 55px; bottom: 25px; right: 25px; font-size: 26px; }
}

/* Prevent Shaking & Edge Sticking */
img { max-width: 100%; height: auto; display: block; }
a, button { -webkit-tap-highlight-color: transparent; }

@media (max-width: 480px) {
    .page-width { padding: 0 20px; }
    .blog-content { font-size: 0.95rem; }
    .hero-section { padding-top: 100px; }
}
