/*==========================================
FEATURED WORK
==========================================*/

.featured-work{

padding:90px 0;

background:var(--light);

}

.section-title{

text-align:center;

max-width:720px;

margin:0 auto 55px;

}

.section-title span{

display:inline-block;

font-size:13px;

font-weight:600;

letter-spacing:2px;

text-transform:uppercase;

color:var(--text);

margin-bottom:12px;

}

.section-title h2{

font-size:46px;

font-weight:700;

margin-bottom:20px;

color:var(--black);

}

.section-title p{

font-size:18px;

line-height:1.8;

color:var(--text);

}

.portfolio-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:22px;

margin-bottom:50px;

}

.portfolio-item{

background:var(--card-bg);

border-radius:16px;

overflow:hidden;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.portfolio-item img{

width:100%;

display:block;

aspect-ratio:4/3;

object-fit:cover;

transition:.4s;

}

.portfolio-item h3{

font-size:22px;

font-weight:700;

margin:22px 22px 8px;

}

.portfolio-item p{

margin:0 22px 24px;

color:var(--text);

font-size:15px;

}

.portfolio-item:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.portfolio-item:hover img{

transform:scale(1.05);

}


.text-center{

text-align:center;

}

/*==================================
SERVICES
==================================*/

.services{

padding:90px 0;

background:var(--white);

}

.services-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

margin-top:50px;

}

.service-card{

background:var(--card-bg);

padding:50px;

border-radius:20px;

border:1px solid var(--border);

box-shadow:0 8px 30px rgba(0,0,0,.04);

transition:.35s;

}

.service-card:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.service-icon{

width:76px;

height:76px;

border-radius:50%;

background:var(--black);

color:var(--white);

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

margin-bottom:35px;

}

.service-card h3{

font-size:28px;

margin-bottom:18px;

}

.service-card p{

font-size:17px;

line-height:1.8;

color:var(--text);

}

/*==================================
METHOD
==================================*/

.method{

padding:90px 0;

background:var(--light);

}

.method-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:20px;

margin-top:50px;

}

.method-item{

text-align:center;

position:relative;

}

.number{

width:65px;

height:65px;

margin:0 auto 25px;

border-radius:50%;

background:var(--black);

color:var(--white);

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

font-weight:700;

line-height:65px;

}

.method-item h3{

font-size:24px;

margin-bottom:15px;

}

.method-item p{

font-size:16px;

line-height:1.8;

color:var(--text);

}

/*==================================
WHY CHOOSE
==================================*/

.why-us{

padding:90px 0;

background:var(--white);

}

.why-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.why-left span{

font-size:13px;

letter-spacing:2px;

font-weight:600;

color:var(--text);

}

.why-left h2{

font-size:46px;

margin:18px 0 25px;

line-height:1.15;

}

.why-left p{

font-size:18px;

line-height:1.9;

color:var(--text);

margin-bottom:40px;

}

.why-right{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

}

.feature-box{

padding:40px;

border-radius:18px;

background:var(--card-bg);

border:1px solid var(--border);

transition:.3s;

}

.feature-box:hover{

transform:translateY(-6px);

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.feature-box h3{

margin-bottom:15px;

font-size:24px;

}

.feature-box p{

line-height:1.8;

color:var(--text);

}

/*==================================
GLOBAL CARD HOVER
==================================*/

.portfolio-item,
.service-card,
.feature-box{

transition:all .35s ease;

}

.portfolio-item:hover,
.service-card:hover,
.feature-box:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(0,0,0,.08);

}

/*==================================
FOOTER
==================================*/

.footer{

background:#111;

color:#ffffff;

padding:70px 0 35px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:60px;

}

.footer-logo{

height:56px;

margin-bottom:25px;

}

.footer-col h4{

font-size:18px;

margin-bottom:25px;

color:#fff;

}

.footer-col p{

color:#d4d4d4;

line-height:1.9;

margin-bottom:12px;

}

.footer-col ul{

list-style:none;

padding:0;

margin:0;

}

.footer-col ul li{

margin-bottom:14px;

}

.footer-col a{

color:#bdbdbd;

text-decoration:none;

transition:.3s;

}

.footer-col a:hover{

color:#fff;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.12);

margin-top:80px;

padding-top:25px;

display:flex;

justify-content:space-between;

align-items:center;

}

.footer-legal{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-legal a{
    color:#bdbdbd;
    text-decoration:none;
    font-size:15px;
    transition:.3s ease;
}

.footer-legal a:hover{
    color:#fff;
}

.footer-legal span{
    color:#666;
}

.footer-bottom p{

color:#999;

margin:0;

}

.social-links{

display:flex;

gap:18px;

}

.social-links a{

width:40px;

height:40px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#222;

color:#fff;

transition:.3s;

}

.social-links a:hover{

background:#fff;

color:#111;

}

/*==================================
OUR STORY
==================================*/

.story{

padding:140px 0;

background:var(--white);

}

.story-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:100px;

align-items:center;

}

.story-content h2{

font-size:58px;

margin:20px 0 30px;

line-height:1.15;

color:var(--black);

}

.story-content p{

font-size:18px;

line-height:1.9;

color:#666;

margin-bottom:24px;

}

/*==================================
OUR IMPACT
==================================*/

.stats{

padding:100px 0;

background:#111;

color:#fff;

}

.stats .section-title h2,
.stats .section-title span{

color:#fff;

}

.stats .section-title p{

color:#d0d0d0;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.stat-box{

text-align:center;

padding:35px;

}

.stat-box h3{

font-size:56px;

font-weight:700;

margin-bottom:12px;

}

.stat-box p{

font-size:18px;

color:#d5d5d5;

}

/*==================================
SERVICE LIST
==================================*/

.service-list{

margin-top:30px;

padding:0;

list-style:none;

}

.service-list li{

font-size:18px;

margin-bottom:20px;

font-weight:500;

color:#333;

line-height:1.9;

}

/*==================================
CONTACT FORM
==================================*/

.contact-form{

display:flex;

flex-direction:column;

gap:18px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

width:100%;

padding:18px 20px;

border:1px solid var(--border);

border-radius:12px;

font-size:16px;

font-family:'Inter',sans-serif;

background:var(--white);

outline:none;

transition:.3s;

color:var(--black);

}

.contact-form select:invalid{

    color:#888888;

}

html.dark .contact-form option{
    background:#1b1b1b;
    color:#ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

border-color:var(--black);

}



.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover{

border-color:var(--black);

}

.contact-form textarea{

resize:vertical;

min-height:180px;

}

.contact-form .btn-dark{

border:none;
cursor:pointer;
width:100%;
padding:18px;
font-size:16px;

}

/*==================================
MAP
==================================*/

.map{

    padding:0 0 100px;

}

.map iframe{

    width:1200px;
    max-width:calc(100% - 40px);

    height:500px;

    display:block;

    margin:0 auto;

    border:0;

    border-radius:24px;

}



/* ==========================================
   PORTFOLIO HERO
========================================== */

.portfolio-hero{
    padding:100px 0 120px;
}

.portfolio-hero .container{
    max-width:1200px;
}

.portfolio-hero .eyebrow{
    display:inline-block;
    margin-bottom:20px;
    font-size:.9rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#666;
}

.portfolio-hero h1{
    font-size: clamp(3.5rem, 7vw, 5.8rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 900px;
    margin: 0 0 28px;
}

.portfolio-hero p{
    max-width:700px;
    font-size:1.2rem;
    line-height:1.8;
    color:#666;
}

/* ==========================================
   PORTFOLIO FEATURED WORK
========================================== */

.portfolio-featured{
    padding:40px 0 140px;
}

.featured-project{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:80px;
    align-items:start;
    margin-bottom:180px;
}

.featured-project.reverse{
    grid-template-columns:1fr 1.4fr;
}

.featured-project.reverse .project-image{
    order:2;
}

.featured-project.reverse .project-info{
    order:1;
}

.project-image,
.gallery-item,
.case-study-image{
    background:#ececec;
    border-radius:20px;
    overflow:hidden;
}

.project-image img,
.gallery-item img,
.case-study-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

.project-image{
    height:800px;
}

.featured-project:hover img{
    transform:scale(1.04);
}

.project-info span{
    display:inline-block;
    margin-bottom:15px;
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#666;
}

.project-info h2{
    font-size:clamp(2.5rem,4vw,4rem);
    margin-bottom:20px;
}

.project-info p{
    font-size:1.1rem;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;
}

/* ==========================================
   PORTFOLIO GALLERY
========================================== */

.portfolio-gallery{
    padding:0 0 140px;
}

.gallery-heading{
    max-width:700px;
    margin-bottom:70px;
}

.gallery-heading span{
    display:inline-block;
    margin-bottom:16px;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#666;
}

.gallery-heading h2{
    font-size:clamp(2.5rem,4vw,4rem);
    line-height:1.2;
}

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

.gallery-item{
    display:flex;
    flex-direction:column;
}

.gallery-item img{
    width:100%;
    height:500px;
    object-fit:cover;
    background:#ececec;
    border-radius:20px;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.03);
}

.gallery-item h3{
    margin:0 0 6px;
    font-size:1.45rem;
    line-height:1.2;
}

.gallery-content{
    padding:18px 6px 0;
}

.gallery-item p{
    margin:0;
    color:#777;
    font-size:.95rem;
    line-height:1.6;
}

/* ==========================================
   CASE STUDY
========================================== */

.case-study{
    padding:140px 0;
    background:var(--white);
}

.case-study .container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:90px;
    align-items:center;
}

.case-study-content span{
    display:inline-block;
    margin-bottom:18px;
    font-size:.85rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#666;
}

.case-study-content h2{
    font-size:clamp(2.8rem,4vw,4.5rem);
    line-height:1.1;
    margin-bottom:25px;
    color:var(--black);
}

.case-study-content p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:35px;
}

.case-study-content ul{
    list-style:none;
    padding:0;
    margin:0 0 40px;
}

.case-study-content li{
    margin-bottom:12px;
    font-weight:500;
    color:var(--black);
}

.case-study-image{
    height:800px;
    overflow:hidden;
    border-radius:24px;
    background:#202020;
    border:1px dashed #3a3a3a;
}

.case-study-image img{
    width:100%;
    display:block;
    aspect-ratio:4/5;
    object-fit:cover;
}

/* ==========================================
   PORTFOLIO CTA
========================================== */

.portfolio-cta{
    padding:140px 0;
    text-align:center;
}

.portfolio-cta .container{
    max-width:800px;
}

.portfolio-cta h2{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1.1;
    margin-bottom:25px;
}

.portfolio-cta p{
    max-width:620px;
    margin:0 auto 40px;
    font-size:1.1rem;
    line-height:1.8;
    color:#666;
}

/* ==========================================
   LEGAL PAGES
========================================== */

.page-hero{
    padding:160px 0 90px;
}

.page-hero .container{
    max-width:850px;
}

.page-hero .eyebrow{
    display:inline-block;
    margin-bottom:20px;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#666;
}

.page-hero h1{
    font-size:clamp(3rem,6vw,5rem);
    line-height:1.1;
    margin-bottom:25px;
}

.page-hero p{
    font-size:1.1rem;
    line-height:1.9;
    color:#666;
}

.legal-content{
    padding:0 0 140px;
}

.legal-content .container{
    max-width:850px;
}

.legal-content h2{
    margin:60px 0 18px;
    font-size:2rem;
}

.legal-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}


/* ==========================================
   Phone Links
========================================== */

.story-content a,
.footer-col a {

    color: inherit;

    text-decoration: none;

    transition: color .3s ease;

}

.story-content a:hover,
.footer-col a:hover {

    color: var(--primary-color);

}
