/*
Theme Name: Enucuz
Theme URI: https://example.com/enucuz
Author: Antigravity
Author URI: https://example.com
Description: A fast, SEO-focused WordPress theme with a dynamic homepage layout.
Version: 1.0.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: enucuz
*/

/* Variables - Themeony Style */
:root {
    --primary: #FF2E63;
    --primary-hover: #D92050;
    --primary-soft: #FFF0F3;
    --text-dark: #111827;
    --text-gray: #4B5563;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    --card-radius: 12px;
    --btn-radius: 8px;
    --container-width: 1280px;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Global Reset & Layout */
html {
    height: 100%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.text-gray {
    color: var(--text-gray);
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-5 {
    padding-top: 3rem;
}

.border-top {
    border-top: 1px solid var(--border-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Header === */
.site-header {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    /* Nav takes all available space */
    align-items: center;
    gap: 2rem;
}

.site-branding {
    justify-self: start;
    min-width: max-content;
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: inline-block;
    flex-shrink: 0;
    /* Don't allow it to shrink */
}

.custom-logo-link img,
.custom-logo-link svg,
.custom-logo {
    display: block;
    width: auto !important;
    height: auto !important;
    max-height: 150px !important;
    min-width: 250px;
    scale: 1.1;
    transform-origin: left center;
}

.main-navigation {
    justify-self: stretch;
    /* Fill the center space */
    width: 100%;
}

.main-navigation ul {
    display: flex;
    justify-content: flex-end;
    /* Align right */
    gap: 3rem;
    margin: 0;
    padding: 0;
    width: 100%;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    /* Fix interaction */
}

.main-navigation a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
}

.header-actions {
    /* Search/Actions stay on the right */
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-search-form {
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 250px;
    transition: all 0.2s;
}

.header-search-form:focus-within {
    border-color: var(--primary);
    background: #fff;
}

.header-search-field {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
}

.user-action-btn svg {
    width: 24px;
    height: 24px;
    color: #374151;
}

/* === 2-Column Layout (Content + Sidebar) === */
.main-content-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    /* Responsive grid */
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* === Premium Single Post Styles === */

/* 1. Hero / Header */
.premium-header {
    text-align: left;
}

.header-breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.15;
    color: #111;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4B5563;
    max-width: 90%;
}

.hero-meta-badge-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.author-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.author-pill img {
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.success-pill {
    background: #ECFDF5;
    color: #047857;
}

.success-pill .dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
}

.info-pill {
    background: #EFF6FF;
    color: #1D4ED8;
}

.hero-image-container {
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-img {
    width: 100%;
    display: block;
}

.hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    text-align: center;
}

/* 2. TOC Premium */
.premium-toc {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--card-radius);
    padding: 1.5rem;
    max-width: 100%;
    transition: all 0.3s;
}

.toc-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1E293B;
    font-size: 1.1rem;
}

.toc-btn {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #64748B;
    font-size: 0.8rem;
}

#toc-body a {
    display: block;
    padding: 0.4rem 0;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
    /* alignment hack */
}

#toc-body a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    background: #F1F5F9;
}

#toc-body .toc-h3 {
    padding-left: 2rem;
    font-size: 0.9rem;
    color: #64748B;
}

/* 3. Content Body Typography */
.premium-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.premium-content p {
    margin-bottom: 1.7rem;
}

.premium-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #111827;
    position: relative;
    padding-left: 0;
}

.premium-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.premium-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.premium-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
}

.premium-content li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Info Boxes */
.info-box,
.warning-box,
.pros-box,
.cons-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid;
}

.info-box {
    background: #EFF6FF;
    border-color: #3B82F6;
    color: #1E40AF;
}

.warning-box {
    background: #FEF2F2;
    border-color: #EF4444;
    color: #991B1B;
}

.pros-box {
    background: #ECFDF5;
    border-color: #10B981;
    color: #065F46;
}

.cons-box {
    background: #FFFBEB;
    border-color: #F59E0B;
    color: #92400E;
}

/* 5. Trust Box */
.trust-signal-box {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.signal-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.signal-icon {
    font-size: 1.5rem;
}

.signal-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.signal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media(max-width: 600px) {
    .signal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.signal-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.signal-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* 6. Author Box Premium */
.premium-author-box {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: var(--card-radius);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.p-author-img img {
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 2px solid white;
}

.p-author-content {
    flex: 1;
}

.p-author-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.p-author-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
}

.p-author-badge {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.p-author-bio {
    font-size: 0.95rem;
    color: #4B5563;
    margin-bottom: 1rem;
}

.p-author-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* 7. Related Grid */
.related-heading {
    font-size: 1.4rem;
    font-weight: 800;
}

.premium-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.p-related-card {
    display: block;
    border-radius: var(--card-radius);
    transition: transform 0.2s;
}

.p-related-card:hover {
    transform: translateY(-3px);
}

.p-related-card:hover .p-related-title {
    color: var(--primary);
}

.p-related-thumb {
    aspect-ratio: 16/10;
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    margin-bottom: 0.8rem;
    background: #eee;
}

.p-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-cat-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
}

.p-related-title {
    font-size: 1rem;
    line-height: 1.4;
    color: #111;
    margin: 0;
    font-weight: 700;
}

/* === PREMIUM COMMENTS === */
.comments-area-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    margin-top: 3rem;
}

.comments-title {
    font-size: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}



.comment-list .comment {
    margin-bottom: 2rem;
}

.comment-body {
    display: flex;
    gap: 1rem;
}

.comment-author .avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.comment-meta {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-metadata {
    font-size: 0.85rem;
    color: #888;
}

.fn {
    font-weight: 700;
    font-size: 1rem;
    color: #111;
    margin-right: 0.5rem;
}

.comment-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.reply {
    margin-top: 0.5rem;
}

.comment-reply-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border: 1px solid #eee;
    border-radius: 4px;
}

.comment-reply-link:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* Comment Form */
.comment-respond {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: var(--card-radius);
    margin-top: 2rem;
}

.reply-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.comment-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--btn-radius);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.comment-form-cookies-consent {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--btn-radius);
    font-weight: 700;
    cursor: pointer;
    justify-self: start;
    transition: transform 0.2s, background 0.2s;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}


/* === SIDEBAR & Sticky === */




/* Sticky Sidebar Logic */
@media (min-width: 993px) {
    .sidebar-container {
        position: sticky;
        top: 2rem;
        /* How much space from top */
        align-self: start;
        /* Required for sticky in grid items */
        height: min-content;
        /* Ensure it doesn't stretch full grid height */
    }
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f1f1;
}

/* Popular Widget */
.popular-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pop-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #9CA3AF;
    font-size: 0.9rem;
    counter-increment: pop-counter;
}

.popular-list {
    counter-reset: pop-counter;
}

.popular-item .pop-number::before {
    content: counter(pop-counter);
}

.popular-item:nth-child(1) .pop-number {
    background: #FEF3C7;
    color: #D97706;
}

/* Gold */
.popular-item:nth-child(2) .pop-number {
    background: #E5E7EB;
    color: #4B5563;
}

/* Silver */
.popular-item:nth-child(3) .pop-number {
    background: #FFEDD5;
    color: #C2410C;
}

/* Bronze */
.pop-details {
    flex: 1;
}

.pop-cat {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.pop-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0.2rem 0 0;
    color: #374151;
}

.popular-item:hover .pop-title {
    color: var(--primary);
}

/* Newsletter Widget */
.newsletter-widget {
    background: var(--primary-soft);
    padding: 2rem;
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid #FFE4E6;
}

.widget-icon {
    margin-bottom: 1rem;
    color: var(--primary);
}

.newsletter-widget .widget-title {
    border: none;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.widget-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.sidebar-form input {
    width: 100%;
    padding: 0.8rem;
    border-radius: var(--btn-radius);
    border: 1px solid #FECDD3;
    margin-bottom: 0.8rem;
    outline: none;
}

.sidebar-form button {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-form button:hover {
    background: var(--primary-hover);
}

/* FAQ Premium */
.premium-faq-item {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.premium-faq-item .faq-question {
    padding: 1.2rem;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    color: #111;
}

.premium-faq-item .faq-answer {
    padding: 0 1.2rem 1.2rem;
    color: #4B5563;
    line-height: 1.6;
}

.faq-icon-wrapper {
    color: var(--primary);
    transition: transform 0.3s;
}

details[open] .faq-icon-wrapper {
    transform: rotate(180deg);
}


/* === Footer Premium Dark === */
.site-footer-modern {
    background: #0f172a;
    /* Dark Navy/Slate */
    padding-top: 5rem;
    padding-bottom: 0;
    color: #94a3b8;
    /* Slate-400 */
    margin-top: auto;
    font-size: 0.95rem;
}

.footer-inner {
    display: grid;
    /* Brand takes 2 parts, Links take 1 part each */
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-heading {
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-logo-text {
    font-weight: 900;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 1.2rem;
    color: #fff;
    letter-spacing: -1px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #94a3b8;
    max-width: 90%;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
    /* Slide effect */
}

/* Social Icons - Glassy Look */
.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    /* Glassy */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 46, 99, 0.3);
}

/* Site Info (Copyright Bar) */
.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: #0b1120;
    /* Darker shade */
    font-size: 0.85rem;
}

.site-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #64748b;
}

.footer-bottom-links a {
    color: #64748b;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-newsletter-form input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--btn-radius);
    outline: none;
}

.footer-newsletter-form button {
    padding: 0.8rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--btn-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-newsletter-form button:hover {
    background: var(--primary-hover);
}

/* Scroll to Top */
#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.2s;
}

#scroll-to-top:hover {
    transform: translateY(-3px);
    background-color: var(--primary-hover);
}

/* === ABOUT PAGE PREMIUM === */
.about-page-wrapper {
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Hero */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 6rem 0 8rem 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 46, 99, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.about-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.about-lead {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats */
.about-stats {
    margin-top: -4rem;
    /* Overlap hero */
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

/* Mission */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
    position: relative;
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.values-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #334155;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #cbd5e1;
    box-shadow: 20px 20px 0 var(--primary-soft);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--primary-soft);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* CTA */
.cta-desc {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border: none;
        padding: 1rem 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .main-content-container {
        grid-template-columns: 1fr;
    }

    .sidebar-container {
        order: 2;
        border-top: 1px solid #eee;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .premium-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .p-author-header {
        justify-content: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .premium-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Common */
.bg-primary-soft {
    background-color: var(--primary-soft);
}

/* === CONTACT PAGE PREMIUM === */
.contact-page-wrapper {
    font-family: var(--font-body);
    background: #fff;
}

/* Hero */
.contact-hero {
    background: linear-gradient(120deg, var(--primary) 0%, #ff1744 100%);
    color: #fff;
    padding: 6rem 0 10rem 0;
    position: relative;
    text-align: center;
}

.contact-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-lead {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 150px;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    top: -50px;
    /* Pull up into hero */
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
}

/* Info Cards */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.info-icon-box {
    width: 50px;
    height: 50px;
    background: #fff0f3;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.info-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.info-link {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border 0.2s;
}

.info-link:hover {
    border-bottom-color: var(--primary);
}

.contact-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.c-social-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}

.c-social-link:hover {
    background: #1e293b;
    color: #fff;
}

.highlight-card {
    /* Revert to default info-card styles */
    background: #fff;
    color: inherit;
    border: 1px solid #f1f5f9;
}

.highlight-card h3 {
    color: #1e293b;
}

.highlight-card p {
    color: #64748b;
}

.btn-text {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

/* Form */
.form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    margin-bottom: 2rem;
}

.premium-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.premium-contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
}

.premium-contact-form input,
.premium-contact-form select,
.premium-contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: #f8fafc;
}

.premium-contact-form input:focus,
.premium-contact-form select:focus,
.premium-contact-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 46, 99, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-btn-block {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    margin-top: 1rem;
}

@media(max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        top: 0;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}