/* ============================================================
   ROOT VARIABLES - Clean Corporate Palette
   ============================================================ */
:root {
    --brand-red: #E31B23;
    --brand-red-hover: #c8161d;
    --brand-dark: #0f172a;
    --brand-darker: #020617;
    --bg-page: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #334155;
    --text-heading: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #059669;
    --warning-color: #d97706;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & FULL WIDTH BREAKOUT
   ============================================================ */
.adda-enterprise * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.adda-enterprise {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: hidden;
}

.adda-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 24px);
    width: 100%;
}

/* ============================================================
   SECTION LAYOUTS
   ============================================================ */
.adda-section {
    padding: clamp(60px, 8vw, 90px) 0;
    width: 100%;
    position: relative;
    background: var(--bg-page);
}

.adda-section.bg-light {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.adda-section.bg-dark {
    background: var(--brand-dark);
    color: var(--text-light);
}

/* ============================================================
   TYPOGRAPHY & HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: clamp(35px, 5vw, 50px);
    max-width: 800px;
    margin-inline: auto;
}

.section-header .badge {
    display: inline-block;
    background: rgba(227, 27, 35, 0.1);
    color: var(--brand-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.bg-dark .section-header h2 {
    color: var(--text-light);
}

.section-header h2 .highlight {
    color: var(--brand-red);
}

.section-header p {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-muted);
}

.bg-dark .section-header p {
    color: #94a3b8;
}

/* SEO Content Text - Extended */
.seo-content {
    max-width: 900px;
    margin: 0 auto 40px;
}

.seo-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.8;
}

.seo-content strong {
    color: var(--text-heading);
    font-weight: 700;
}

.seo-content .highlight-text {
    color: var(--brand-red);
    font-weight: 600;
}

.seo-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-main);
    line-height: 1.7;
}

.seo-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: 700;
}

.seo-content .highlight-box {
    background: rgba(227, 27, 35, 0.04);
    border-left: 4px solid var(--brand-red);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 25px 0;
}

.seo-content .highlight-box p {
    margin-bottom: 0;
    color: var(--text-main);
}

.seo-content .highlight-box strong {
    color: var(--text-heading);
}

.seo-content .exam-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.seo-content .exam-list span {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading);
    text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    line-height: 1;
}

.btn-primary {
    background: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(227, 27, 35, 0.2);
}

.btn-primary:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(227, 27, 35, 0.3);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--text-heading);
    border: 2px solid var(--border-color);
}

.bg-dark .btn-outline {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.2);
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: #cbd5e1;
}

.bg-dark .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    background: var(--brand-dark);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(227, 27, 35, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.05), transparent 25%);
    padding: clamp(80px, 12vw, 120px) 0 clamp(60px, 10vw, 100px);
    text-align: center;
    color: var(--text-light);
    position: relative;
    border-bottom: 4px solid var(--brand-red);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero h1 .highlight {
    color: var(--brand-red);
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.8;
}

/* Hero Search */
.hero-search {
    display: flex;
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    color: var(--text-heading);
    background: transparent;
    outline: none;
    min-height: 50px;
}

.hero-search input::placeholder {
    color: #94a3b8;
}

.hero-search button {
    background: var(--brand-dark);
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search button:hover {
    background: var(--brand-red);
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(30px, 6vw, 60px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-num {
    display: block;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #ffffff;
}

.hero-stats .stat-label {
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================================
   REFERRAL BANNER (FLOATING)
   ============================================================ */
.referral-float {
    margin-top: -35px;
    position: relative;
    z-index: 10;
}

.referral-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: clamp(20px, 3vw, 24px) clamp(24px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.referral-card .ref-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.referral-card .ref-icon {
    width: 48px;
    height: 48px;
    background: rgba(227, 27, 35, 0.1);
    color: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.referral-card .ref-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.referral-card .ref-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.referral-card .ref-action {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 6px;
    gap: 10px;
}

.referral-card .ref-code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-red);
    padding: 0 12px;
}

.referral-card .btn-copy {
    background: var(--text-heading);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.referral-card .btn-copy:hover {
    background: var(--brand-red);
}

/* ============================================================
   ENTERPRISE COUPON CARDS
   ============================================================ */
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: clamp(24px, 3vw, 32px);
}

.coupon-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-red);
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e1;
}

.coupon-header {
    padding: 24px 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-header .store-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid var(--border-color);
}

.coupon-header .discount-badge {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

.coupon-body {
    padding: 0 24px 20px;
    flex-grow: 1;
}

.coupon-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1.4;
}

.coupon-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.coupon-footer {
    padding: 20px 24px;
    background: var(--bg-light);
    border-top: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-action {
    display: flex;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.coupon-action .code {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-heading);
    border-right: 1px dashed var(--border-color);
}

.coupon-action .btn-reveal {
    background: var(--bg-light);
    color: var(--brand-red);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.coupon-action .btn-reveal:hover {
    background: var(--brand-red);
    color: #ffffff;
}

.coupon-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.coupon-meta .verified {
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(24px, 3vw, 32px);
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-thumb {
    height: 200px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
}

.blog-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-body h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-body h3 a:hover {
    color: var(--brand-red);
}

.blog-body p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-heading);
    user-select: none;
}

.faq-question .icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--brand-red);
}

.faq-item.active .icon {
    transform: rotate(45deg);
    background: rgba(227, 27, 35, 0.1);
    color: var(--brand-red);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-main);
    margin: 0 0 10px 0;
}

.faq-answer .faq-seo {
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.8;
}

/* ============================================================
   NEWSLETTER & CTA
   ============================================================ */
.cta-box {
    background: var(--brand-dark);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 8vw, 60px) clamp(20px, 5vw, 40px);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--brand-red);
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box .cta-text {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 12px;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.8;
}

.cta-box .cta-seo {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 6px;
    border-radius: 8px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    background: transparent;
    color: var(--text-heading);
}

.newsletter-form button {
    background: var(--brand-red);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--brand-red-hover);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
    .hero-search {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }
    .hero-search input {
        background: #ffffff;
        border-radius: 8px;
        padding: 16px;
    }
    .hero-search button {
        padding: 16px;
        width: 100%;
    }
    .referral-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .referral-card .ref-info {
        flex-direction: column;
        gap: 12px;
    }
    .referral-card .ref-action {
        width: 100%;
        justify-content: space-between;
    }
    .newsletter-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 12px;
    }
    .newsletter-form input {
        background: #ffffff;
        border-radius: 8px;
        padding: 16px;
    }
    .newsletter-form button {
        width: 100%;
    }
    .seo-content .exam-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .seo-content .exam-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   GENERATEPRESS / THEME OVERRIDES
   ============================================================ */
body { overflow-x: hidden !important; }
.site.grid-container,
.site-content.grid-container,
.site-main .container,
.site-content,
.content-area,
.site-main,
.inside-article,
.entry-content,
#primary,
#content,
.generate-back-to-top {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
#primary { float: none !important; }
#right-sidebar, #left-sidebar, .sidebar, .widget-area { display: none !important; }

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}