@import url('variables.css');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
    font-family:'Poppins',sans-serif;
}

body{
    background:#fff;
    color:var(--black);
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

section{
    padding:90px 0;
}

.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 28px;
    border-radius:14px;
    font-weight:600;
    transition:var(--transition);
}

.btn-primary{
    background:var(--primary);
    color:white;
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

.btn-outline{
    border:1px solid #ddd;
    color:var(--black);
}

.btn-outline:hover{
    background:#f5f5f5;
}

/* NAVBAR */

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.navbar{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:var(--black);
}

.logo span{
    color:var(--primary);
}

.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    color:var(--black);
    font-weight:500;
    transition:var(--transition);
}

.nav-menu a:hover{
    color:var(--primary);
}

/* HERO */

.hero{
    padding-top:180px;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    font-size:18px;
    color:var(--text);
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:18px;
    margin-bottom:45px;
}

.stats{
    display:flex;
    gap:40px;
}

.stat h3{
    font-size:32px;
    color:var(--primary);
}

.stat p{
    margin:0;
    font-size:14px;
}

/* HERO GRID */

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.hero-card{
    border-radius:24px;
    overflow:hidden;
    position:relative;
    height:250px;
    box-shadow:var(--shadow);
}

.hero-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.7),transparent);
}

.overlay-content{
    position:absolute;
    bottom:20px;
    left:20px;
    color:white;
}

.overlay-content h4{
    font-size:20px;
}

/* SERVICES */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
}

.section-title span{
    color:var(--primary);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-content{
    padding:30px;
}

.service-content h3{
    margin-bottom:18px;
    font-size:28px;
}

.service-content p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:20px;
}

.service-img{
    height:240px;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* MAP SECTION */

.map-section{
    background:var(--gray);
}

.map-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.map-content h2{
    font-size:52px;
    margin-bottom:20px;
}

.map-content span{
    color:var(--primary);
}

.map-content p{
    line-height:1.8;
    color:var(--text);
}

.map-image img{
    width:100%;
}

/* CLIENTS */

.clients{
    padding:60px 0;
}

.client-logos{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:50px;
}

.client-logos img{
    height:45px;
    opacity:.7;
    transition:var(--transition);
}

.client-logos img:hover{
    opacity:1;
}

/* CTA */

.cta{
    background:linear-gradient(135deg,#111,#1f1f1f);
    color:white;
    border-radius:30px;
    padding:70px;
}

.cta-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cta h2{
    font-size:48px;
    margin-bottom:15px;
}

/* FOOTER */

footer{
    background:#0c0c0c;
    color:white;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
}

.footer-logo span{
    color:var(--primary);
}

.footer-links a{
    display:block;
    margin-bottom:12px;
    color:#ccc;
}

.footer-links a:hover{
    color:white;
}

.footer-contact p{
    margin-bottom:12px;
    color:#ccc;
}

.copyright{
    margin-top:50px;
    text-align:center;
    color:#888;
}

/* SERVICES PAGE */

.service-hero{
    padding-top:180px;
    padding-bottom:100px;
}

.service-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.service-hero-content h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.service-hero-content h1 span{
    color:var(--primary);
}

.service-hero-content p{
    font-size:18px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:35px;
}

.service-hero-image img{
    width:100%;
    border-radius:28px;
    box-shadow:var(--shadow);
}

.mini-title{
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:18px;
}

/* SERVICE DETAIL */

.service-section{
    padding:100px 0;
}

.gray-bg{
    background:#f8f8f8;
}

.service-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.service-detail-grid.reverse{
    direction:rtl;
}

.service-detail-grid.reverse > *{
    direction:ltr;
}

.service-detail-image img{
    width:100%;
    border-radius:28px;
    box-shadow:var(--shadow);
}

.service-detail-content h2{
    font-size:48px;
    margin-bottom:25px;
    line-height:1.2;
}

.service-detail-content p{
    line-height:1.9;
    color:var(--text);
    margin-bottom:30px;
}

.service-list{
    margin-bottom:35px;
}

.service-list li{
    margin-bottom:14px;
    padding-left:30px;
    position:relative;
    color:var(--text);
}

.service-list li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:var(--primary);
    font-weight:bold;
}

.service-badge{
    background:rgba(196,0,0,.1);
    color:var(--primary);
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.service-badge.orange{
    background:rgba(255,115,0,.1);
    color:#ff7300;
}

.service-badge.green{
    background:rgba(0,180,90,.1);
    color:#00a651;
}

/* WORKFLOW */

.workflow-section{
    background:#111;
    color:white;
}

.workflow-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:60px;
}

.workflow-card{
    background:#1c1c1c;
    padding:35px;
    border-radius:24px;
    position:relative;
    transition:var(--transition);
}

.workflow-card:hover{
    transform:translateY(-8px);
    background:#222;
}

.workflow-number{
    width:60px;
    height:60px;
    background:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:20px;
    font-size:20px;
}

.workflow-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.workflow-card p{
    color:#bbb;
    line-height:1.8;
}

/* PORTFOLIO */

.portfolio-hero{
    padding-top:180px;
    padding-bottom:100px;
}

.portfolio-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.portfolio-hero-content h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
}

.portfolio-hero-content h1 span{
    color:var(--primary);
}

.portfolio-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:35px;
}

.portfolio-hero-image img{
    width:100%;
    border-radius:28px;
    box-shadow:var(--shadow);
}

.hero-highlight{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.highlight-box{
    background:white;
    box-shadow:var(--shadow);
    padding:25px;
    border-radius:22px;
    flex:1;
    text-align:center;
}

.highlight-box h3{
    color:var(--primary);
    font-size:34px;
    margin-bottom:5px;
}

/* TRUST */

.trust-section{
    background:#fafafa;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
    margin-top:50px;
}

.trust-card{
    background:white;
    border-radius:20px;
    padding:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:var(--shadow);
}

.trust-card img{
    max-width:100%;
    height:40px;
    object-fit:contain;
    opacity:.7;
}

/* PROJECT */

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.project-card{
    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-image{
    height:260px;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.project-content{
    padding:35px;
}

.project-category{
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
    margin-bottom:20px;
}

.project-category.red{
    background:rgba(196,0,0,.1);
    color:var(--primary);
}

.project-category.gold{
    background:rgba(212,175,55,.15);
    color:var(--gold);
}

.project-category.green{
    background:rgba(0,180,90,.12);
    color:#00a651;
}

.project-content h3{
    font-size:30px;
    margin-bottom:18px;
    line-height:1.3;
}

.project-content p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:30px;
}

.project-info{
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.project-info div{
    text-align:center;
}

.project-info h4{
    color:var(--primary);
    font-size:22px;
}

/* WHY */

.why-section{
    background:#111;
    color:white;
}

.why-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.why-image img{
    width:100%;
    border-radius:28px;
}

.why-content h2{
    font-size:54px;
    line-height:1.2;
    margin-bottom:25px;
}

.why-content h2 span{
    color:var(--primary);
}

.why-content p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:35px;
}

.why-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.why-item{
    display:flex;
    gap:18px;
}

.why-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
}

/* IMPACT */

.impact-box{
    background:linear-gradient(135deg,#111,#1f1f1f);
    border-radius:35px;
    padding:70px;
    color:white;

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.impact-content h2{
    font-size:54px;
    line-height:1.2;
    margin-bottom:25px;
}

.impact-content p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:35px;
}

.impact-image img{
    width:100%;
    border-radius:28px;
}

/* ABOUT PAGE */

.about-hero{
    padding-top:180px;
    padding-bottom:100px;
}

.about-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-hero-content h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
}

.about-hero-content h1 span{
    color:var(--primary);
}

.about-hero-content p{
    line-height:1.9;
    color:var(--text);
    margin-bottom:35px;
    font-size:18px;
}

.about-hero-image img{
    width:100%;
    border-radius:28px;
    box-shadow:var(--shadow);
}

.about-badges{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:35px;
}

.about-badge{
    background:#111;
    color:white;
    padding:12px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

/* TRUST */

.about-trust{
    background:#f8f8f8;
}

.trust-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.trust-left h2{
    font-size:54px;
    line-height:1.2;
    margin-bottom:25px;
}

.trust-left h2 span{
    color:var(--primary);
}

.trust-left p{
    line-height:1.9;
    color:var(--text);
}

.trust-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.trust-box{
    background:white;
    padding:35px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.trust-box h3{
    margin-bottom:15px;
    font-size:24px;
}

.trust-box p{
    color:var(--text);
    line-height:1.8;
}

/* LEGAL */

.legal-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.legal-card{
    background:white;
    border-radius:24px;
    padding:40px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.legal-card:hover{
    transform:translateY(-8px);
}

.legal-icon{
    width:70px;
    height:70px;
    background:rgba(196,0,0,.1);
    color:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.legal-card h3{
    margin-bottom:15px;
    font-size:26px;
}

.legal-card p{
    color:var(--text);
    line-height:1.8;
}

/* VALUE */

.company-value{
    background:#111;
    color:white;
}

.value-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.value-image img{
    width:100%;
    border-radius:28px;
}

.value-content h2{
    font-size:54px;
    line-height:1.2;
    margin-bottom:25px;
}

.value-content h2 span{
    color:var(--primary);
}

.value-content p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:35px;
}

.value-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.value-item{
    display:flex;
    gap:18px;
}

.value-dot{
    width:18px;
    height:18px;
    background:var(--primary);
    border-radius:50%;
    margin-top:10px;
    flex-shrink:0;
}

/* CONFIDENCE */

.confidence-box{
    background:linear-gradient(135deg,#111,#1d1d1d);
    border-radius:35px;
    padding:70px;
    color:white;

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.confidence-content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
}

.confidence-content p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:35px;
}

.confidence-image img{
    width:100%;
    border-radius:28px;
}

.confidence-stats{
    display:flex;
    gap:40px;
}

.confidence-stats h3{
    font-size:42px;
    color:var(--primary);
}
/* ARTICLE */

.article-hero{
    padding-top:180px;
    padding-bottom:80px;
    background:#111;
    color:white;
}

.article-hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.article-hero h1 span{
    color:var(--primary);
}

.article-hero p{
    color:#bbb;
    line-height:1.9;
    max-width:700px;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.article-card{
    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
    color:inherit;
}

.article-card:hover{
    transform:translateY(-10px);
}

.article-image{
    height:260px;
}

.article-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.article-content{
    padding:30px;
}

.article-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    font-size:14px;
    color:var(--primary);
}

.article-content h3{
    font-size:28px;
    margin-bottom:18px;
    line-height:1.4;
}

.article-content p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:25px;
}

.article-read{
    color:var(--primary);
    font-weight:600;
}

/* =========================================================
DETAIL ARTICLE PAGE
========================================================= */

.article-detail{
    padding-top:180px;
    padding-bottom:100px;
    background:#fff;
}

/* HEADER */

.detail-header{
    max-width:1000px;
    margin:auto;
    margin-bottom:50px;
}

.detail-category{
    background:rgba(196,0,0,.1);
    color:var(--primary);
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
}

.detail-header h1{
    font-size:64px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:800;
    color:#111;
    letter-spacing:-1px;
}

.detail-meta{
    display:flex;
    align-items:center;
    gap:12px;
    color:#777;
    font-size:15px;
    flex-wrap:wrap;
}

/* THUMBNAIL */

.detail-thumbnail{
    max-width:1000px;
    margin:auto;
    margin-bottom:60px;
}

.detail-thumbnail img{
    width:100%;
    border-radius:32px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* ARTICLE CONTENT */

.detail-content{
    max-width:900px;
    margin:auto;
    font-size:19px;
    line-height:2;
    color:#444;
}

/* PARAGRAPH */

.detail-content p{
    margin-bottom:34px;
    color:#444;
    text-align:left;
}

/* HEADINGS */

.detail-content h1,
.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6{
    color:#111;
    line-height:1.4;
    font-weight:700;
    margin-top:55px;
    margin-bottom:24px;
    letter-spacing:-0.5px;
}

.detail-content h1{
    font-size:48px;
}

.detail-content h2{
    font-size:42px;
}

.detail-content h3{
    font-size:34px;
}

.detail-content h4{
    font-size:28px;
}

/* LIST */

.detail-content ul,
.detail-content ol{
    margin-bottom:35px;
    padding-left:30px;
}

.detail-content ul{
    list-style:disc;
}

.detail-content ol{
    list-style:decimal;
}

.detail-content li{
    margin-bottom:16px;
    color:#444;
    line-height:1.9;
}

/* IMAGE */

.detail-content img{
    width:100%;
    border-radius:24px;
    margin:45px 0;
    display:block;
    box-shadow:var(--shadow);
}

/* BLOCKQUOTE */

.detail-content blockquote{
    border-left:5px solid var(--primary);
    padding-left:25px;
    margin:45px 0;
    color:#666;
    font-style:italic;
    font-size:22px;
    line-height:1.8;
}

/* LINK */

.detail-content a{
    color:var(--primary);
    font-weight:600;
}

.detail-content a:hover{
    text-decoration:underline;
}

/* STRONG */

.detail-content strong{
    color:#111;
    font-weight:700;
}

/* TABLE */

.detail-content table{
    width:100%;
    border-collapse:collapse;
    margin:40px 0;
}

.detail-content table th,
.detail-content table td{
    border:1px solid #ddd;
    padding:16px;
    text-align:left;
}

.detail-content table th{
    background:#f7f7f7;
    font-weight:700;
}

/* SHARE SECTION */

.share-section{
    max-width:900px;
    margin:auto;
    margin-top:80px;
    padding-top:45px;
    border-top:1px solid #eee;
}

.share-section h3{
    font-size:28px;
    margin-bottom:25px;
}

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

.share-buttons a{
    padding:14px 24px;
    border-radius:14px;
    background:#111;
    color:white;
    font-weight:600;
    transition:var(--transition);
}

.share-buttons a:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

/* CTA */

.article-cta{
    max-width:1000px;
    margin:auto;
    margin-top:80px;
}

.article-cta-content{
    background:linear-gradient(135deg,#111,#1d1d1d);
    color:white;
    border-radius:32px;
    padding:60px;
    text-align:center;
}

.article-cta-content h2{
    font-size:48px;
    margin-bottom:20px;
    line-height:1.2;
}

.article-cta-content p{
    color:#bbb;
    line-height:1.9;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
}

/* INLINE FORM */

.inline-lead-form{
    max-width:1000px;
    margin:auto;
    margin-top:70px;
    background:white;
    border-radius:32px;
    padding:55px;
    box-shadow:var(--shadow);
}

.inline-lead-form h3{
    font-size:38px;
    margin-bottom:15px;
}

.inline-lead-form p{
    color:#777;
    margin-bottom:35px;
}

.lead-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.inline-lead-form input,
.inline-lead-form textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:16px;
    padding:18px;
    font-size:16px;
}

/* MOBILE */

@media(max-width:768px){

.article-detail{
    padding-top:150px;
}

.detail-header h1{
    font-size:38px;
    line-height:1.25;
}

.detail-content{
    font-size:17px;
    line-height:1.9;
}

.detail-content h1{
    font-size:34px;
}

.detail-content h2{
    font-size:30px;
}

.detail-content h3{
    font-size:26px;
}

.detail-content h4{
    font-size:22px;
}

.detail-content blockquote{
    font-size:18px;
}

.article-cta-content{
    padding:35px 25px;
}

.article-cta-content h2{
    font-size:32px;
}

.inline-lead-form{
    padding:35px 25px;
}

.inline-lead-form h3{
    font-size:30px;
}

.lead-grid{
    grid-template-columns:1fr;
}

.share-buttons{
    flex-direction:column;
}

}

/* LOGIN */

.secure-login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#111,#1b1b1b);
    padding:30px;
}

.secure-login-card{
    width:100%;
    max-width:450px;
    background:white;
    border-radius:28px;
    padding:50px;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.login-logo{
    font-size:38px;
    font-weight:800;
    margin-bottom:25px;
}

.login-logo span{
    color:var(--primary);
}

.secure-login-card h2{
    margin-bottom:10px;
    font-size:34px;
}

.secure-login-card p{
    color:#777;
    margin-bottom:35px;
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.form-group input{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 18px;
    font-size:16px;
}

.login-btn{
    width:100%;
    justify-content:center;
    border:none;
    cursor:pointer;
    height:58px;
    font-size:16px;
}

.login-error{
    background:#ffeaea;
    color:#d10000;
    padding:15px;
    border-radius:12px;
    margin-bottom:25px;
}

/* ADMIN */

.admin-layout{
    display:flex;
    min-height:100vh;
}

.admin-sidebar{
    width:280px;
    background:#111;
    color:white;
    padding:40px 30px;
}

.sidebar-logo{
    font-size:36px;
    font-weight:800;
    margin-bottom:50px;
}

.sidebar-logo span{
    color:var(--primary);
}

.sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.sidebar-menu a{
    color:#bbb;
    padding:16px 20px;
    border-radius:14px;
    transition:var(--transition);
}

.sidebar-menu a:hover,
.sidebar-menu a.active{
    background:var(--primary);
    color:white;
}

.admin-content{
    flex:1;
    background:#f8f8f8;
    padding:40px;
}

.admin-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.admin-card{
    background:white;
    border-radius:28px;
    padding:35px;
    box-shadow:var(--shadow);
}

.modern-table{
    width:100%;
    border-collapse:collapse;
}

.modern-table th{
    background:#111;
    color:white;
    padding:18px;
    text-align:left;
}

.modern-table td{
    padding:20px 18px;
    border-bottom:1px solid #eee;
}

.table-thumb{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:12px;
}

.table-action{
    display:flex;
    gap:15px;
}

.table-action a{
    color:var(--primary);
    font-weight:600;
}

/* MODERN ARTICLE CMS */

.modern-admin-layout{
    display:flex;
    min-height:100vh;
    background:#f5f5f5;
}

.modern-sidebar{
    width:280px;
    background:#111;
    color:white;
    padding:40px 30px;
}

.modern-content{
    flex:1;
    padding:40px;
}

.content-topbar{
    margin-bottom:35px;
}

.content-topbar h1{
    font-size:42px;
    margin-bottom:10px;
}

.content-topbar p{
    color:#777;
}

.modern-form-card{
    background:white;
    border-radius:28px;
    padding:40px;
    box-shadow:var(--shadow);
}

.form-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
}

.form-group{
    margin-bottom:30px;
}

.form-group label{
    display:block;
    margin-bottom:12px;
    font-weight:600;
}

.form-group input{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 18px;
    font-size:16px;
}

.image-preview{
    margin-top:20px;
}

.image-preview img{
    width:100%;
    border-radius:20px;
    border:1px solid #eee;
}

.publish-action{
    margin-top:40px;
    display:flex;
    justify-content:flex-end;
}

.alert-error{
    background:#ffe5e5;
    color:#c00000;
    padding:18px;
    border-radius:14px;
    margin-bottom:25px;
}

.alert-success{
    background:#e7ffef;
    color:#007a35;
    padding:18px;
    border-radius:14px;
    margin-bottom:25px;
}

/* CKEDITOR FIX */

.ck-editor__editable{
    min-height:500px;
}

.inline-lead-form{
    margin-top:60px;
    background:white;
    border-radius:28px;
    padding:50px;
    box-shadow:var(--shadow);
}

.inline-lead-form h3{
    font-size:36px;
    margin-bottom:15px;
}

.inline-lead-form p{
    color:#777;
    margin-bottom:35px;
}

.lead-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.inline-lead-form input,
.inline-lead-form textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:14px;
    padding:16px;
    font-size:16px;
}

/* CKEDITOR */

.article-editor-body{
    font-family:'Poppins',sans-serif;
    font-size:18px;
    line-height:1.8;
    padding:25px;
}

.article-editor-body p{
    margin-bottom:24px;
}

.article-editor-body h1,
.article-editor-body h2,
.article-editor-body h3,
.article-editor-body h4{
    margin-top:35px;
    margin-bottom:20px;
    line-height:1.4;
}

.article-editor-body h1{
    font-size:42px;
}

.article-editor-body h2{
    font-size:36px;
}

.article-editor-body h3{
    font-size:30px;
}

.article-editor-body ul,
.article-editor-body ol{
    padding-left:25px;
    margin-bottom:25px;
}

.article-editor-body li{
    margin-bottom:10px;
}