/*=============================================================
    ÖZSENTEZ İNŞAAT
    HTML VERSION
==============================================================*/

/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

/*=============================================================

RESET

==============================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;
    background:#faf9f7;
    color:#1d3448;
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;

}

img{

    display:block;
    width:100%;
    max-width:100%;

}

a{

    color:inherit;
    text-decoration:none;

}

ul{

    list-style:none;

}

button,
input,
textarea{

    font:inherit;

}

/*=============================================================

ROOT

==============================================================*/

:root{

    --primary:#103652;
    --primary-light:#1b4d73;

    --accent:#f4a623;

    --background:#faf9f7;

    --secondary:#edf3f7;

    --white:#ffffff;

    --text:#1d3448;

    --gray:#607080;

    --border:#dde5ea;

    --radius:12px;

    --transition:.35s ease;

    --shadow-sm:
        0 6px 18px rgba(0,0,0,.05);

    --shadow:
        0 12px 35px rgba(0,0,0,.08);

    --shadow-lg:
        0 25px 60px rgba(0,0,0,.12);

}

/*=============================================================

TYPOGRAPHY

==============================================================*/

h1,
h2,
h3,
h4{

    font-family:"Barlow Condensed",sans-serif;
    color:var(--primary);
    line-height:1.08;

}

h1{

    font-size:72px;
    font-weight:700;

}

h2{

    font-size:54px;
    font-weight:700;

}

h3{

    font-size:34px;
    font-weight:600;

}

p{

    color:var(--gray);

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.22em;

    text-transform:uppercase;

    color:var(--accent);

}

.section-title{

    margin-top:18px;

    max-width:760px;

}

.section-description{

    margin-top:24px;

    max-width:760px;

    font-size:18px;

    line-height:1.9;

}

/*=============================================================

CONTAINER

==============================================================*/

.container{

    width:100%;

    max-width:1280px;

    margin:auto;

    padding-inline:24px;

}

.section{

    padding:110px 0;

}

/*=============================================================

BUTTONS

==============================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-height:50px;

    padding:0 28px;

    border-radius:8px;

    font-size:15px;

    font-weight:700;

    transition:var(--transition);

    cursor:pointer;

}

.btn-primary{

    background:var(--accent);

    color:#111;

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:var(--shadow);

}

.btn-outline{

    border:1px solid rgba(255,255,255,.45);

    color:#fff;

}

.btn-outline:hover{

    background:rgba(255,255,255,.12);

}

/*=============================================================

COMMON

==============================================================*/

.text-center{

    text-align:center;

}

.grid{

    display:grid;

}

.flex{

    display:flex;

}

.hidden{

    display:none;

}

.radius{

    border-radius:var(--radius);

}

.shadow{

    box-shadow:var(--shadow);

}

/*=============================================================

ANIMATIONS

==============================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.reveal{

    animation:fadeUp .7s ease both;

}

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.animate-marquee{

    animation:marquee 28s linear infinite;

}
/*=============================================================

HEADER

==============================================================*/

.header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(250,249,247,.90);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(16,54,82,.10);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:76px;

}



/*=============================================================

LOGO

==============================================================*/

.logo{

    display:flex;

    align-items:center;

    flex-shrink:0;

}

.logo img{

    height:48px;

    width:auto;

}



/*=============================================================

NAVIGATION

==============================================================*/

.navigation{

    display:flex;

    align-items:center;

    gap:42px;
	
	z-index:9999;
}

.navigation a{

    position:relative;

    font-size:15px;

    font-weight:600;

    color:rgba(16,54,82,.80);

    transition:var(--transition);

}

.navigation a:hover{

    color:var(--accent);

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:var(--transition);

}

.navigation a:hover::after{

    width:100%;

}



/*=============================================================

HEADER ACTIONS

==============================================================*/

.header-actions{

    display:flex;

    align-items:center;

    gap:14px;

}



/*=============================================================

HERO

==============================================================*/

.hero{

    position:relative;

    min-height:92vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    inset:0;

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}



/*=============================================================

OVERLAY

==============================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(16,54,82,.96) 0%,
        rgba(16,54,82,.82) 45%,
        rgba(16,54,82,.35) 100%
    );

}



/*=============================================================

HERO CONTENT

==============================================================*/

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:720px;

    animation:fadeUp .7s ease;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(244,166,35,.10);

    border:1px solid rgba(244,166,35,.35);

    color:var(--accent);

    font-size:13px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

}

.hero-content h1{

    margin-top:28px;

    color:#fff;

    font-size:76px;

    line-height:1.02;

}

.hero-content h1 span{

    color:var(--accent);

}

.hero-content p{

    margin-top:28px;

    max-width:620px;

    color:rgba(255,255,255,.84);

    font-size:19px;

    line-height:1.9;

}



/*=============================================================

HERO BUTTONS

==============================================================*/

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:42px;

}

.hero-buttons .btn-outline{

    border-color:rgba(255,255,255,.45);

    color:#fff;

}

.hero-buttons .btn-outline:hover{

    background:rgba(255,255,255,.10);

}



/*=============================================================

RESPONSIVE

==============================================================*/

@media(max-width:992px){

    .navigation{

        display:none;

    }

    .hero-content h1{

        font-size:58px;

    }

}

@media(max-width:768px){

    .header .container{

        min-height:70px;

    }

    .logo img{

        height:42px;

    }

    .hero{

        min-height:80vh;

    }

    .hero-content{

        max-width:100%;

    }

    .hero-content h1{

        font-size:44px;

    }

    .hero-content p{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-buttons .btn{

        width:100%;

    }

}

@media(max-width:480px){

    .hero-content h1{

        font-size:36px;

    }

    .hero-tag{

        font-size:11px;

        letter-spacing:.12em;

    }

}
/*=============================================================

MARQUEE

==============================================================*/

.marquee{

    overflow:hidden;

    background:var(--primary);

    color:#fff;

    border-top:1px solid rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:16px 0;

}

.marquee-track{

    display:flex;

    align-items:center;

    gap:48px;

    width:max-content;

    animation:marquee 28s linear infinite;

}

.marquee-track span{

    display:flex;

    align-items:center;

    gap:16px;

    font-family:"Barlow Condensed",sans-serif;

    font-size:22px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.08em;

    white-space:nowrap;

}

.marquee-track span::after{

    content:"★";

    color:var(--accent);

    font-size:14px;

}

/*=============================================================

ABOUT

==============================================================*/

.about{

    padding:120px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:center;

    gap:70px;

}

.about-content p{

    margin-top:22px;

    font-size:17px;

    line-height:1.9;

    color:var(--gray);

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:18px;

    box-shadow:var(--shadow-lg);

}

/*=============================================================

STATS

==============================================================*/

.stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin-top:42px;

}

.stats div{

    border-left:4px solid var(--accent);

    padding-left:18px;

}

.stats small{

    display:block;

    color:var(--gray);

    font-size:14px;

    margin-bottom:6px;

}

.stats strong{

    display:block;

    font-family:"Barlow Condensed",sans-serif;

    font-size:54px;

    line-height:1;

    color:var(--primary);

}

/*=============================================================

SERVICES

==============================================================*/

.services{

    padding:120px 0;

    background:var(--secondary);

}

.section-header{

    max-width:720px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:60px;

}

/*=============================================================

SERVICE CARD

==============================================================*/

.service-card{

    background:#fff;

    border:1px solid rgba(16,54,82,.10);

    border-radius:16px;

    padding:34px;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.service-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

.service-card .service-icon{

    width:54px;

    height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:rgba(244,166,35,.12);

    color:var(--accent);

    margin-bottom:22px;

}

.service-card .service-icon svg{

    width:28px;

    height:28px;

}

.service-card h3{

    font-size:30px;

    margin-bottom:14px;

}

.service-card p{

    font-size:16px;

    line-height:1.85;

    color:var(--gray);

}

/*=============================================================

CARD HOVER

==============================================================*/

.service-card:hover .service-icon{

    background:var(--accent);

    color:#fff;

    transition:var(--transition);

}

.service-card:hover h3{

    color:var(--accent);

}

/*=============================================================

RESPONSIVE

==============================================================*/

@media(max-width:1100px){

    .about-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .about-image{

        order:-1;

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .marquee-track span{

        font-size:18px;

    }

    .about{

        padding:80px 0;

    }

    .services{

        padding:80px 0;

    }

    .stats{

        grid-template-columns:1fr;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        padding:28px;

    }

    .stats strong{

        font-size:42px;

    }

}
/*=============================================================

FEATURED PROJECT

==============================================================*/

.featured-project{

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;

}

.projects-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 70px;
}

.project-content p{

    margin-top:24px;

    max-width:580px;

    font-size:17px;

    line-height:1.9;

}

.project-content .btn{

    margin-top:36px;

}

.project-image{

    position:relative;

}

.project-image img{

    border-radius:18px;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.project-image:hover img{

    transform:scale(1.02);

}

/*=============================================================

GUIDE

==============================================================*/

.guide{

    padding:120px 0;

    background:var(--primary);

    color:#ffffff;

}

.guide .section-title{

    color:#ffffff;

}

.guide-text{

    margin-top:26px;

    max-width:860px;

    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

}

.guide-title{

    margin-top:70px;

    margin-bottom:34px;

    font-size:34px;

    color:var(--accent);

}

/*=============================================================

STEPS

==============================================================*/

.steps{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:26px;

}

.step{

    padding:32px;

    border-radius:16px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    transition:var(--transition);

}

.step:hover{

    transform:translateY(-5px);

    background:rgba(255,255,255,.08);

}

.step span{

    display:block;

    font-family:"Barlow Condensed",sans-serif;

    font-size:48px;

    font-weight:700;

    color:var(--accent);

}

.step h3{

    margin-top:12px;

    font-size:26px;

    color:#ffffff;

}

.step p{

    margin-top:12px;

    color:rgba(255,255,255,.74);

    font-size:15px;

    line-height:1.8;

}

/*=============================================================

ADVANTAGES

==============================================================*/

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:38px;

}

.advantage-card{

    border-top:3px solid var(--accent);

    padding-top:22px;

}

.advantage-card h3{

    color:#ffffff;

    font-size:24px;

    margin-bottom:14px;

}

.advantage-card p{

    color:rgba(255,255,255,.74);

    line-height:1.8;

}

/*=============================================================

WHY US

==============================================================*/

.why-us-box{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:45px;

    align-items:center;

    margin-top:70px;

    padding:45px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

}

.why-us-box h3{

    color:#ffffff;

    font-size:32px;

}

.why-us-box p{

    margin-top:18px;

    color:rgba(255,255,255,.78);

    line-height:1.9;

}

.why-us-box img{

    border-radius:16px;

}

/*=============================================================

SPACING HELPERS

==============================================================*/

.mt-60{

    margin-top:60px;

}

.mt-70{

    margin-top:70px;

}

.mt-80{

    margin-top:80px;

}

/*=============================================================

RESPONSIVE

==============================================================*/

@media(max-width:1200px){

    .project-grid{

        grid-template-columns:1fr;

    }

    .project-image{

        order:-1;

    }

    .steps{

        grid-template-columns:repeat(2,1fr);

    }

    .advantages-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .why-us-box{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .featured-project{

        padding:80px 0;

    }

    .guide{

        padding:80px 0;

    }

    .steps{

        grid-template-columns:1fr;

    }

    .advantages-grid{

        grid-template-columns:1fr;

    }

    .project-content{

        text-align:center;

    }

    .project-content p{

        max-width:100%;

    }

    .guide-title{

        font-size:28px;

    }

    .step{

        padding:26px;

    }

    .why-us-box{

        padding:28px;

    }

}
/*=============================================================

FAQ

==============================================================*/

.faq{

    padding:120px 0;

    background:#ffffff;

}

.faq-wrapper{

    max-width:900px;

    margin:0 auto;

    border-top:1px solid rgba(16,54,82,.10);

    border-bottom:1px solid rgba(16,54,82,.10);

}

.faq-item{

    border-bottom:1px solid rgba(16,54,82,.08);

}

.faq-item:last-child{

    border-bottom:none;

}

.faq-question{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

    padding:28px 0;

    cursor:pointer;

    font-family:"Barlow Condensed",sans-serif;

    font-size:28px;

    font-weight:600;

    color:var(--primary);

    transition:var(--transition);

}

.faq-question:hover{

    color:var(--accent);

}




.faq-answer{

    display:none;

    padding:0 0 28px;

    color:var(--gray);

    line-height:1.9;

    font-size:16px;

}



}

/*=============================================================

CONTACT

==============================================================*/

.contact{

    padding:120px 0;

    background:var(--secondary);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-content p{

    margin-top:20px;

    font-size:17px;

    line-height:1.9;

}

.contact-button{

    margin-top:36px;

}

.contact-info{

    display:grid;

    gap:22px;

}

.contact-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:26px;

    border-radius:16px;

    background:#ffffff;

    border:1px solid rgba(16,54,82,.10);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.contact-card:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

.contact-icon{

    width:52px;

    height:52px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:rgba(244,166,35,.12);

    color:var(--accent);

}

.contact-card h3{

    font-size:22px;

    margin-bottom:8px;

}

.contact-card p,

.contact-card a{

    color:var(--gray);

    line-height:1.7;

    transition:var(--transition);

}

.contact-card a:hover{

    color:var(--accent);

}

/*=============================================================

FOOTER

==============================================================*/

.footer{

    background:var(--primary);

    color:#ffffff;

    padding:45px 0;

}

.footer .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}

.footer-brand h3{

    color:#ffffff;

    font-size:34px;

}

.footer-brand p{

    margin-top:8px;

    color:rgba(255,255,255,.70);

    font-size:14px;

}

.footer-copy{

    color:rgba(255,255,255,.60);

    font-size:14px;

}

/*=============================================================

RESPONSIVE

==============================================================*/

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .faq{

        padding:80px 0;

    }

    .contact{

        padding:80px 0;

    }

    .faq-question{

        font-size:22px;

    }

    .contact-card{

        padding:20px;

    }

    .footer .container{

        flex-direction:column;

        text-align:center;

    }

    .footer-brand h3{

        font-size:28px;

    }

}
/*=============================================================

DISPLAY UTILITIES

==============================================================*/

.d-flex{
    display:flex;
}

.flex-column{
    flex-direction:column;
}

.flex-wrap{
    flex-wrap:wrap;
}

.align-center{
    align-items:center;
}

.justify-center{
    justify-content:center;
}

.justify-between{
    justify-content:space-between;
}

.text-center{
    text-align:center;
}

.w-100{
    width:100%;
}

.h-100{
    height:100%;
}

/*=============================================================

SPACING

==============================================================*/

.mt-10{margin-top:10px;}
.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-50{margin-top:50px;}
.mt-60{margin-top:60px;}
.mt-80{margin-top:80px;}
.mt-100{margin-top:100px;}

.mb-10{margin-bottom:10px;}
.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}
.mb-80{margin-bottom:80px;}

/*=============================================================

GRID HELPERS

==============================================================*/

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}
/* Tablet */
@media (max-width: 992px){
    .projects-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Telefon */
@media (max-width: 768px){
    .projects-grid{
        grid-template-columns: 1fr;
    }
}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*=============================================================

IMAGE EFFECTS

==============================================================*/

.img-cover{

    overflow:hidden;

    border-radius:16px;

}

.img-cover img{

    transition:.45s ease;

}

.img-cover:hover img{

    transform:scale(1.06);

}

.img-shadow{

    box-shadow:var(--shadow-lg);

}

/*=============================================================

CARD EFFECT

==============================================================*/

.card{

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

/*=============================================================

BADGE

==============================================================*/

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(244,166,35,.12);

    color:var(--accent);

    font-size:13px;

    font-weight:700;

    letter-spacing:.08em;

}

/*=============================================================

FORM

==============================================================*/

input,
textarea,
select{

    width:100%;

    border:1px solid var(--border);

    background:#ffffff;

    border-radius:10px;

    padding:15px 18px;

    transition:var(--transition);

}

textarea{

    resize:vertical;

    min-height:180px;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--accent);

    box-shadow:0 0 0 4px rgba(244,166,35,.15);

}

/*=============================================================

BUTTON EFFECT

==============================================================*/

.btn{

    transition:all .30s ease;

}

.btn:hover{

    transform:translateY(-2px);

}

.btn:active{

    transform:scale(.98);

}

/*=============================================================

FADE ANIMATION

==============================================================*/

.fade-up{

    opacity:0;

    transform:translateY(35px);

    transition:.7s ease;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}

/*=============================================================

ZOOM EFFECT

==============================================================*/

.zoom{

    transition:.45s ease;

}

.zoom:hover{

    transform:scale(1.04);

}

/*=============================================================

ICON BOX

==============================================================*/

.icon-box{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:rgba(244,166,35,.12);

    color:var(--accent);

}

.icon-box svg{

    width:28px;

    height:28px;

}

/*=============================================================

DIVIDER

==============================================================*/

.divider{

    width:100%;

    height:1px;

    background:rgba(16,54,82,.10);

}

/*=============================================================

SCROLLBAR

==============================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eef2f5;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--accent);

}

/*=============================================================

SELECTION

==============================================================*/

::selection{

    background:var(--accent);

    color:#111;

}

/*=============================================================

RESPONSIVE HELPERS

==============================================================*/

@media(max-width:992px){

    .grid-4{

        grid-template-columns:repeat(2,1fr);

    }

    .grid-3{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .grid-2,
    .grid-3,
    .grid-4{

        grid-template-columns:1fr;

    }

}
/*=============================================================

ACCESSIBILITY

==============================================================*/

:focus{

    outline:none;

}

:focus-visible{

    outline:3px solid var(--accent);

    outline-offset:4px;

    border-radius:6px;

}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{

    box-shadow:0 0 0 5px rgba(244,166,35,.18);

}

/*=============================================================

LINKS

==============================================================*/

a{

    transition:color .25s ease,
               background .25s ease,
               border-color .25s ease,
               transform .25s ease;

}

a:hover{

    text-decoration:none;

}

/*=============================================================

IMAGES

==============================================================*/

img{

    user-select:none;

    -webkit-user-drag:none;

}

img[loading="lazy"]{

    content-visibility:auto;

}

/*=============================================================

TABLES

==============================================================*/

table{

    width:100%;

    border-collapse:collapse;

}

th,
td{

    padding:14px 18px;

    border-bottom:1px solid var(--border);

    text-align:left;

}

th{

    color:var(--primary);

    font-weight:700;

}

/*=============================================================

LISTS

==============================================================*/

.list-check{

    display:grid;

    gap:14px;

}

.list-check li{

    position:relative;

    padding-left:30px;

}

.list-check li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    color:var(--accent);

    font-weight:700;

}

/*=============================================================

OBJECT FIT

==============================================================*/

.object-cover{

    object-fit:cover;

}

.object-contain{

    object-fit:contain;

}

/*=============================================================

VISIBILITY

==============================================================*/

.hidden{

    display:none !important;

}

.visible{

    display:block !important;

}

/*=============================================================

OPACITY

==============================================================*/

.opacity-0{

    opacity:0;

}

.opacity-50{

    opacity:.5;

}

.opacity-75{

    opacity:.75;

}

.opacity-100{

    opacity:1;

}

/*=============================================================

BORDER RADIUS

==============================================================*/

.rounded-sm{

    border-radius:6px;

}

.rounded{

    border-radius:12px;

}

.rounded-lg{

    border-radius:18px;

}

.rounded-xl{

    border-radius:24px;

}

.rounded-full{

    border-radius:999px;

}

/*=============================================================

SHADOWS

==============================================================*/

.shadow-sm{

    box-shadow:var(--shadow-sm);

}

.shadow-md{

    box-shadow:var(--shadow);

}

.shadow-lg{

    box-shadow:var(--shadow-lg);

}

/*=============================================================

TRANSITIONS

==============================================================*/

.transition{

    transition:var(--transition);

}

.transition-fast{

    transition:.20s ease;

}

.transition-slow{

    transition:.55s ease;

}

/*=============================================================

MOTION REDUCE

==============================================================*/

@media(prefers-reduced-motion:reduce){

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}

/*=============================================================

PRINT

==============================================================*/

@media print{

.header,
.footer,
.btn{

display:none !important;

}

body{

background:#fff;

color:#000;

}

section{

padding:20px 0 !important;

page-break-inside:avoid;

}

img{

max-width:100%;

}

}

/*=============================================================

HIGH DPI

==============================================================*/

@media (-webkit-min-device-pixel-ratio:2),
       (min-resolution:192dpi){

img{

image-rendering:auto;

}

}

/*=============================================================

SMALL UTILITIES

==============================================================*/

.text-primary{

color:var(--primary);

}

.text-accent{

color:var(--accent);

}

.text-muted{

color:var(--gray);

}

.bg-primary{

background:var(--primary);

}

.bg-secondary{

background:var(--secondary);

}

.bg-white{

background:#fff;

}

.border{

border:1px solid var(--border);

}

.overflow-hidden{

overflow:hidden;

}
/*=============================================================

EXTRA LARGE

==============================================================*/

@media(max-width:1400px){

.container{

max-width:1180px;

}

.hero-content h1{

font-size:68px;

}

.section{

padding:100px 0;

}

}

/*=============================================================

LARGE

==============================================================*/

@media(max-width:1200px){

.container{

max-width:1040px;

}

.section-title{

font-size:48px;

}

.project-grid,

.about-grid,

.contact-grid{

grid-template-columns:1fr;

gap:60px;

}

.project-image{

order:-1;

}

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

.steps{

grid-template-columns:repeat(2,1fr);

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*=============================================================

TABLET

==============================================================*/

@media (max-width:992px){

    .mega-menu,
    .mega-menu.active{

        left:0 !important;
        top:0 !important;
        transform:none !important;

        width:100% !important;
        max-width:100% !important;

        position:relative;
        display:none;

        opacity:1;
        visibility:visible;

        grid-template-columns:1fr !important;

        padding:0;
        margin-top:10px;

        box-shadow:none;
        border-radius:0;
        background:#f7f7f7;
    }

    .mega-menu.active{
        display:grid;
    }

    .mega-column{
        width:100%;
    }

    .mega-column a{
        padding:12px 15px;
    }

    .mega-box{
        display:none;
    }

}

/*=============================================================

MOBILE

==============================================================*/

@media(max-width:768px){

.container{

padding-inline:20px;

}

.hero{

padding:80px 0;

}

.hero-content{

max-width:100%;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

align-items:stretch;

}

.hero-buttons .btn{

width:100%;

}

.section-title{

font-size:38px;

}

.services-grid,

.steps,

.advantages-grid,

.stats{

grid-template-columns:1fr;

}

.footer .container{

flex-direction:column;

text-align:center;

}

}

/*=============================================================

SMALL MOBILE

==============================================================*/

@media(max-width:576px){

.hero-content h1{

font-size:34px;

line-height:1.1;

}

.section-tag{

font-size:11px;

letter-spacing:.12em;

}

.service-card,

.step,

.contact-card{

padding:22px;

}

.project-content .btn,

.contact-button .btn{

width:100%;

}

}

/*=============================================================

VERY SMALL

==============================================================*/

@media(max-width:420px){

.logo img{

height:38px;

}

.hero-content h1{

font-size:30px;

}

.btn{

padding:0 20px;

font-size:14px;

}

h2{

font-size:30px;

}

h3{

font-size:24px;

}

}

/*=============================================================

PERFORMANCE

==============================================================*/

img{

height:auto;

}

svg{

display:block;

}

button{

border:none;

background:none;

}

iframe{

width:100%;

border:0;

}
/*==================================================
PREMIUM HEADER
==================================================*/

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

background:#ffffff;

box-shadow:0 8px 35px rgba(0,0,0,.05);

transition:.35s;

}

.header .container{

display:flex;

align-items:center;

justify-content:space-between;

height:88px;

}

/*==================================================
LOGO
==================================================*/

.logo img{

display:block;

height:auto;

transition:.3s;

}

.logo:hover img{

transform:scale(1.03);

}

/*==================================================
MENU
==================================================*/

.navigation{

margin-left:auto;

margin-right:35px;

}

.menu{

display:flex;

align-items:center;

gap:38px;

list-style:none;

margin:0;

padding:0;

}

.menu>li{

position:relative;

}

.menu>li>a{

display:flex;

align-items:center;

gap:6px;

font-size:15px;

font-weight:600;

color:#222;

text-decoration:none;

padding:34px 0;

transition:.25s;

}

.menu>li>a:hover{

color:#1f7a3d;

}

.arrow{

font-size:12px;

transition:.3s;

}

.has-dropdown:hover .arrow,

.has-mega:hover .arrow{

transform:rotate(180deg);

}

/*==================================================
DROPDOWN
==================================================*/

.dropdown{

position:absolute;

top:100%;

left:0;

width:240px;

background:#fff;

border-radius:16px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

padding:18px 0;

opacity:0;

visibility:hidden;

transform:translateY(15px);

transition:.30s;

}

.has-dropdown:hover .dropdown{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.dropdown a{

display:block;

padding:14px 24px;

text-decoration:none;

font-weight:500;

color:#444;

transition:.25s;

border-left:4px solid transparent;

}

.dropdown a:hover{

background:#f5f5f5;

border-left:4px solid #1f7a3d;

color:#1f7a3d;

}

/*==================================================
MEGA MENU
==================================================*/

.mega-menu{

position:absolute;

left:50%;

transform:translateX(-50%) translateY(20px);

top:100%;

width:980px;

background:#fff;

border-radius:22px;

box-shadow:0 25px 70px rgba(0,0,0,.12);

display:grid;

grid-template-columns:1fr 1fr 300px;

gap:40px;

padding:40px;

opacity:0;

visibility:hidden;

transition:.35s;

}

.has-mega:hover .mega-menu{

opacity:1;

visibility:visible;

transform:translateX(-50%) translateY(0);

}

/*==================================================
MEGA COLUMN
==================================================*/

.mega-column h3{

font-size:18px;

margin-bottom:22px;

color:#1f7a3d;

}

.mega-column a{

display:block;

padding:12px 0;

color:#444;

text-decoration:none;

font-weight:500;

transition:.25s;

border-bottom:1px solid #efefef;

}

.mega-column a:hover{

padding-left:12px;

color:#1f7a3d;

}

/*==================================================
RIGHT BOX
==================================================*/

.mega-box{

background:#f7faf8;

border-radius:18px;

padding:28px;

display:flex;

flex-direction:column;

justify-content:center;

}

.mega-box small{

font-size:14px;

color:#1f7a3d;

font-weight:700;

text-transform:uppercase;

}

.mega-box h4{

font-size:32px;

margin:12px 0;

}

.mega-box p{

font-size:15px;

line-height:1.7;

margin-bottom:22px;

}

/*==================================================
HEADER BUTTONS
==================================================*/

.header-actions{

display:flex;

align-items:center;

gap:14px;

}

.btn-whatsapp{

padding:12px 20px;

border-radius:12px;

background:#25D366;

color:#fff;

text-decoration:none;

font-weight:600;

transition:.25s;

}

.btn-whatsapp:hover{

transform:translateY(-2px);

}

/*==================================================
MOBILE
==================================================*/

.mobile-toggle{

display:none;

background:none;

border:none;

font-size:32px;

cursor:pointer;

}

/*==================================================
STICKY SPACE
==================================================*/

body{

padding-top:88px;

}
/* ===========================
   MOBİL MENÜ
=========================== */

@media (max-width:992px){

    .mobile-toggle{
        display:block;
        font-size:30px;
        color:#103652;
        z-index:10001;
    }

.header-actions{
    display:flex;
    gap:10px;
    margin-right:15px;
}

.header-actions .btn,
.header-actions .btn-whatsapp{
    padding:17px 10px;
    font-size:10px;
}

    .navigation{
        position:fixed;
        top:88px;
        left:-100%;
        width:100%;
        height:calc(100vh - 88px);
        background:#fff;
        transition:.35s;
        overflow-y:auto;
        margin:0;
        padding:30px;
        display:block;
    }

    .navigation.active{
        left:0;
    }

    .menu{
        display:flex;
        flex-direction:column;
        gap:0;
    }

    .menu li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .menu li a{
        display:flex;
        justify-content:space-between;
        padding:18px 0;
    }

    .dropdown,
    .mega-menu{

        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        width:100%;
        display:none;
        box-shadow:none;
        padding:0;
        border-radius:0;
        background:#f7f7f7;
        margin-bottom:15px;
    }

.dropdown.active{
    display:block;
}

.mega-menu.active{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
    width:100%;
    padding:15px;
}
.mega-menu.active .mega-column,
.mega-menu.active .mega-box{
    display:block;
    width:100%;
}

.mega-menu.active .mega-column a{
    display:block;
    width:100%;
}

.mega-menu.active .mega-box{
    margin-top:15px;
}
.mega-column{
    width:100%;
}

.mega-column h3{
    margin:15px 0 10px;
    font-size:18px;
}

.mega-column a{
    display:block;
    padding:12px 0;
    border-bottom:1px solid #ececec;
}

.mega-box{
    width:100%;
    margin-top:20px;
    padding:20px;
}

}
/*==================================================
FAQ PREMIUM
==================================================*/

.faq{

    padding:100px 0;

    background:#f7f8fa;

}

.faq-list{

    max-width:950px;

    margin:60px auto 0;

}

.faq-item{

    background:#fff;

    border:1px solid #e7e7e7;

    border-radius:14px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.faq-item:hover{

    border-color:#ff6b00;

    transform:translateY(-2px);

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    position:relative;

    padding:24px 70px 24px 65px;

    font-size:20px;

    font-weight:700;

    color:#222;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::before{

    content:"?";

    position:absolute;

    left:22px;

    top:18px;

    width:30px;

    height:30px;

    border-radius:50%;

    background:#ff6b00;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    font-weight:700;

}

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:25px;

    top:18px;

    width:34px;

    height:34px;

    border-radius:50%;

    background:#f2f2f2;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    color:#ff6b00;

    transition:.35s;

}

.faq-item[open] summary::after{

    content:"−";

    transform:rotate(180deg);

}

.faq-answer{

    padding:0 30px 28px 65px;

    color:#666;

    line-height:1.9;

    font-size:16px;

    border-top:1px solid #eee;

}

.faq-answer p{

    margin-top:20px;

}

@media(max-width:768px){

.faq{

padding:70px 0;

}

.faq-item summary{

font-size:17px;

padding:20px 55px 20px 55px;

}

.faq-answer{

padding:0 20px 22px 55px;

}

}
.faq-item[open] .faq-answer{

    display:block;

}
.faq-answer{

    display:none;

}

.faq-item[open] .faq-answer{

    display:block;

}
.faq-item .faq-answer{
    display:none;
}

.faq-item[open] .faq-answer{
    display:block;
}
.faq .faq-answer{
    display:none !important;
}

.faq details[open] .faq-answer{
    display:block !important;
}
/*=========================
    MARKALAR
==========================*/

.brands-section{

    padding:90px 0;

    background:#ffffff;

    overflow:hidden;

}

.brand-slider{

    width:100%;

    overflow:hidden;

    position:relative;

    margin-top:50px;

}

.brand-track{

    display:flex;

    align-items:center;

    gap:40px;

    width:max-content;

    animation:brandSlide 35s linear infinite;

}

.brand-track:hover{

    animation-play-state:paused;

}

.brand-track a{

    width:190px;

    height:90px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.30s;

    flex-shrink:0;

}

.brand-track a:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.brand-track img{

    max-width:130px;

    max-height:55px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.75;

    transition:.30s;

}

.brand-track a:hover img{

    filter:none;

    opacity:1;

}

@keyframes brandSlide{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

.brand-track{

gap:20px;

}

.brand-track a{

width:150px;

height:70px;

}

.brand-track img{

max-width:100px;

}

}
/*==============================
FINAL SECTION
==============================*/

.site-ending{

    padding:120px 20px 90px;

    text-align:center;

    background:#0f2234;

    color:#fff;

}

.ending-mini{

    display:inline-block;

    letter-spacing:4px;

    color:#ff7a00;

    font-size:13px;

    margin-bottom:20px;

}

.site-ending h2{

    font-size:58px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:700;

}

.site-ending p{

    max-width:700px;

    margin:auto;

    color:#c8d0d8;

    line-height:1.9;

    font-size:18px;

}

.ending-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==============================
FOOTER
==============================*/

.minimal-footer{

    background:#08131f;

    padding:40px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.minimal-footer nav{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:35px;

    margin-bottom:25px;

}

.minimal-footer nav a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

    font-size:15px;

}

.minimal-footer nav a:hover{

    color:#ff7a00;

}

.footer-contact{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:25px;

    color:#9fb0bf;

    font-size:15px;

}

.footer-contact a{

    color:#9fb0bf;

    text-decoration:none;

}

.footer-contact a:hover{

    color:#fff;

}

.minimal-footer small{

    color:#6f7e8b;

    letter-spacing:.5px;

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px){

.site-ending{

padding:90px 20px 70px;

}

.site-ending h2{

font-size:36px;

}

.footer-contact{

flex-direction:column;

gap:8px;

}

.footer-contact span{

display:none;

}

.minimal-footer nav{

gap:18px;

}

}

/*=============================================================

END

==============================================================*/