@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);
}