:root{
    --burdur-primary:#0f2d52;
    --burdur-primary-dark:#08213f;
    --burdur-secondary:#ff7a00;
    --burdur-yellow:#ffc526;
    --burdur-dark:#071527;
    --burdur-white:#ffffff;
    --burdur-soft:#f5f8fc;
    --burdur-text:#243044;
    --burdur-muted:#64748b;
    --burdur-border:#e5e7eb;
    --burdur-radius:18px;
    --burdur-shadow:0 15px 40px rgba(0,0,0,.12);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--burdur-text);
    background:#ffffff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HERO */

.hero{
    position:relative;
    padding:90px 0;
    background:
        linear-gradient(90deg,rgba(15,45,82,.96),rgba(15,45,82,.78)),
        linear-gradient(135deg,#0f2d52,#1e5b8b);
    color:#ffffff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.eyebrow{
    display:inline-block;
    background:#eaf1ff;
    color:#0f2d52;
    padding:9px 18px;
    border-radius:999px;
    margin-bottom:24px;
    font-size:15px;
    font-weight:800;
}

.hero h1{
    margin:0 0 22px;
    font-size:52px;
    line-height:1.12;
    font-weight:900;
    color:#ffffff !important;
    letter-spacing:-1px;
}

.hero p{
    margin:0 0 30px;
    max-width:620px;
    color:#eef6ff !important;
    font-size:17px;
    line-height:1.8;
}

.hero-image img{
    width:100%;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:36px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:14px 28px;
    border-radius:999px;
    font-size:16px;
    font-weight:800;
    border:2px solid transparent;
    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.primary{
    background:#08213f;
    color:#ffffff !important;
}

.whatsapp{
    background:#25d366;
    color:#ffffff !important;
}

.secondary{
    background:transparent;
    border-color:#ffffff;
    color:#ffffff !important;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.hero-stats div{
    min-height:125px;
    background:#ffffff;
    color:#0f2d52;
    border-radius:18px;
    padding:22px 16px;
    box-shadow:var(--burdur-shadow);
    text-align:center;
}

.hero-stats strong{
    display:block;
    color:#ff7a00 !important;
    font-size:28px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:8px;
}

.hero-stats span{
    display:block;
    color:#0f2d52 !important;
    font-size:15px;
    font-weight:800;
}

/* QUICK CONTACT */

.quick-contact{
    background:#08213f;
    padding:18px 0;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.quick-grid a{
    color:#ffffff !important;
    font-weight:800;
    text-align:center;
    font-size:15px;
}

/* GENEL SECTION */

section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:48px;
}

.section-title span{
    display:inline-block;
    color:#ff7a00;
    font-weight:900;
    margin-bottom:10px;
}

.section-title h2{
    margin:0;
    color:#0f2d52 !important;
    font-size:38px;
    line-height:1.25;
    font-weight:900;
}

.section-title p{
    max-width:820px;
    margin:16px auto 0;
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}

.light h2,
.process .section-title h2{
    color:#ffffff !important;
}

.process .section-title span{
    color:#ffc526;
}

/* SERVICES */

.services{
    background:#ffffff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.service-card{
    display:block;
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--burdur-shadow);
    border:1px solid #edf1f7;
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-7px);
}

.service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.service-card h3{
    margin:0;
    padding:20px 20px 8px;
    color:#0f2d52 !important;
    font-size:20px;
    font-weight:900;
}

.service-card p{
    margin:0;
    padding:0 20px 22px;
    color:#64748b !important;
    font-size:15px;
    line-height:1.7;
}

/* PROCESS */

.process{
    background:#0f2d52;
    color:#ffffff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.process-grid div{
    background:#ffffff;
    border-radius:20px;
    padding:26px;
    box-shadow:var(--burdur-shadow);
}

.process-grid b{
    display:block;
    color:#ff7a00;
    font-size:34px;
    font-weight:900;
    margin-bottom:12px;
}

.process-grid h3{
    margin:0 0 10px;
    color:#0f2d52 !important;
    font-size:20px;
    font-weight:900;
}

.process-grid p{
    margin:0;
    color:#64748b !important;
    font-size:15px;
    line-height:1.7;
}

/* AREAS */

.areas{
    background:#ffffff;
}

.area-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.area-grid a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:72px;
    background:#ffffff;
    color:#0f2d52 !important;
    border-radius:16px;
    border:1px solid #edf1f7;
    box-shadow:var(--burdur-shadow);
    font-weight:900;
    text-align:center;
    padding:18px;
}

/* PRICE */

.price-box{
    background:#f5f8fc;
}

.price-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:24px;
    align-items:center;
}

.price-grid > div:first-child span{
    color:#ff7a00;
    font-weight:900;
}

.price-grid > div:first-child h2{
    color:#0f2d52 !important;
    font-size:34px;
    line-height:1.25;
    margin:10px 0 14px;
    font-weight:900;
}

.price-grid > div:first-child p{
    color:#64748b;
    line-height:1.8;
}

.price-card{
    background:#ffffff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:var(--burdur-shadow);
}

.price-card h3{
    color:#0f2d52 !important;
    margin:0;
    font-weight:900;
}

.price-card strong{
    display:block;
    color:#ff7a00 !important;
    font-size:28px;
    font-weight:900;
    margin:16px 0;
}

.price-card p{
    margin:0;
    color:#64748b;
}

/* FORM */

.form-section{
    background:#ffffff;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:40px;
    align-items:start;
}

.form-info span{
    color:#ff7a00;
    font-weight:900;
}

.form-info h2{
    margin:10px 0 16px;
    color:#0f2d52 !important;
    font-size:36px;
    line-height:1.25;
    font-weight:900;
}

.form-info p{
    color:#64748b;
    line-height:1.8;
}

.contact-card{
    margin-top:22px;
    background:#f5f8fc;
    border-radius:18px;
    padding:22px;
    border:1px solid #edf1f7;
}

.contact-card p{
    margin:8px 0;
    color:#0f2d52;
    font-weight:700;
}

.contact-card a{
    color:#0f2d52;
    font-weight:900;
}

.request-form{
    background:#ffffff;
    border-radius:22px;
    padding:30px;
    box-shadow:var(--burdur-shadow);
    border:1px solid #edf1f7;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:14px;
}

.request-form input,
.request-form select,
.request-form textarea{
    width:100%;
    min-height:52px;
    border:1px solid #d9e0ea;
    border-radius:12px;
    padding:14px 15px;
    font-size:15px;
    color:#0f2d52;
    background:#ffffff;
    outline:none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus{
    border-color:#ff7a00;
    box-shadow:0 0 0 3px rgba(255,122,0,.14);
}

.request-form textarea{
    min-height:170px;
    resize:vertical;
    margin-bottom:14px;
}

.request-form button{
    width:100%;
    min-height:56px;
    background:#ff7a00;
    color:#ffffff;
    border:0;
    border-radius:14px;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
}

/* FAQ */

.faq{
    background:#f5f8fc;
}

.faq-list{
    max-width:920px;
    margin:0 auto;
}

.faq-list details{
    background:#ffffff;
    border:1px solid #edf1f7;
    border-radius:16px;
    padding:20px;
    margin-bottom:14px;
    box-shadow:0 8px 22px rgba(15,45,82,.06);
}

.faq-list summary{
    cursor:pointer;
    color:#0f2d52 !important;
    font-weight:900;
}

.faq-list p{
    color:#64748b;
    line-height:1.8;
}

/* WHATSAPP */

.fixed-whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:9999;
    background:#25d366;
    color:#ffffff !important;
    padding:15px 24px;
    border-radius:999px;
    font-weight:900;
    box-shadow:0 12px 30px rgba(0,0,0,.22);
}

/* HEADER CONFLICT FIX */
.burdur-header,
.nav-wrap,
.main-nav,
.mobile-nav{
    display:initial;
}

/* MOBILE */

@media(max-width:991px){

    .hero{
        padding:55px 0;
    }

    .hero-grid,
    .form-grid,
    .price-grid,
    .service-grid,
    .process-grid,
    .area-grid,
    .quick-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }

    .form-row{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .container{
        padding:0 15px;
    }

    section{
        padding:55px 0;
    }

    .hero h1{
        font-size:30px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .hero-image img{
        border-radius:16px;
    }

    .fixed-whatsapp{
        left:15px;
        right:15px;
        text-align:center;
    }
}