* { margin: 0; padding: 0; box-sizing: border-box; }


html {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-family: "Poppins", sans-serif;
    font-family: "Inter", sans-serif;

    --black: #000;
    --white: #fff;
    /* --main-clr: #f8760f; */
    --main-clr: #91FB91;
    --main-clr-txt: #000;
    /* --main-clr-2: #e36918; */
    --main-clr-2: #69ec69;
    --main-clr-2-txt: #fff;

    --black-o: 0, 0, 0;
    --white-o: 255, 255, 255;

    --max-w: 1300px;
    --max-w-lg: 1600px;
    --max-w-sm: 1100px;

    --dp: 15px;
}

html{
    --primary: var(--main-clr);
    --primary-gradient: linear-gradient(135deg, var(--main-clr) 0%, var(--main-clr-2) 100%);
    --primary-dark: var(--main-clr-2);
    --secondary: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1e272e;
    --text-gray: #7f8c8d;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body { overflow-x: hidden; }

img { max-width: 100% }
input, textarea, button, select { font-family: inherit; font-size: inherit; color: inherit; outline: none; border: none; resize: none; }
a { text-decoration: none; color: inherit }

.w-full { width: 100%; }

.dp { padding-left: var(--dp); padding-right: var(--dp); }
.dpy { padding-top: 100px; padding-bottom: 100px; }

.cursor-pointer { cursor: pointer; }


.bd-container { max-width: var(--max-w); margin-inline: auto; padding-left: 15px; padding-right: 15px;}
.bd-container-lg { max-width: var(--max-w-lg); margin-inline: auto; }
.bd-container-sm { max-width: var(--max-w-sm); margin-inline: auto; }

.dp .bd-container{ padding-left: 0; padding-right: 0;}

.bd-header { box-shadow: 0 0 15px 0 rgba(var(--black-o), .1); position: absolute; top: 0; left: 50%; top: 15px; transform: translateX(-50%); border-radius: 99px; max-width: var(--max-w-lg); z-index: 20; background-color: var(--white); width: calc(100% - 30px);}
.bd-header > div { padding: 0 var(--dp); }
.bd-header > div > div { max-width: var(--max-w-lg); height: 85px; display: flex; align-items: center; justify-content: space-between; margin-inline: auto; }
.bd-header > div > div .l { padding-left: 15px;}
.bd-header > div > div .r { }
.bd-header .bd-btn { border-radius: 99px;}

.bd-logo { display: flex; }
.bd-logo img { height: 50px; }

.bd-nav { position: relative; }
.bd-nav nav { }
.bd-nav nav ul { display: flex; align-items: center; gap: 35px; list-style: none; }
.bd-nav nav ul li { }
.bd-nav nav ul li a { font-size: 15px; font-weight: 600; transition: var(--transition); }
.bd-nav nav ul li a:hover { color: var(--main-clr); }

/* Hamburger Menu Toggle */
.bd-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.bd-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.bd-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.bd-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.bd-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* Responsive Styles */
@media (min-width: 991px) {
    .bd-mobile-header .bd-logo,
    .bd-mobile-header .bd-close-menu{ display: none;}
}
@media (max-width: 991px) {
    .bd-header > div > div { height: 70px; padding-right: 10px;}
    .bd-header > div > div .l{ padding-left: 10px;}
    
    .bd-menu-toggle {
        display: flex;
    }

    .bd-nav nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100dvh;
        background-color: var(--white);
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        padding: 30px 20px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(-100%);
        z-index: 1002;
        display: block;
    }

    .bd-nav nav.active {
        transform: translateX(0);
    }

    /* Mobile Overlay */
    .bd-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .bd-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .bd-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .bd-mobile-header .bd-logo img { height: 40px; filter: none; }

    .bd-close-menu {
        background: none;
        border: none;
        color: var(--secondary);
        font-size: 28px;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bd-nav nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .bd-nav nav ul li {
        width: 100%;
    }

    .bd-nav nav ul li a {
        font-size: 17px;
        font-weight: 500;
        display: block;
        padding: 12px 0;
        color: var(--secondary);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .bd-nav nav ul li a.bd-btn {
        margin-top: 20px;
        background-color: var(--main-clr);
        color: var(--main-clr-txt);
        border-radius: 12px;
        text-align: center;
        border: none;
    }
    
    .bd-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .bd-header{ transform: unset; left: 15px; right: 15px;}
}



.bd-footer { margin-top: 80px; background-color: linear-gradient(310deg, #f97b1b, #a33900);}
.bd-footer > div { padding-left: var(--dp) !important; padding-right: var(--dp) !important; }
.bd-footer > div > div { max-width: var(--max-w); margin-inline: auto; }
.bd-footer .t { padding: 50px 0; color: var(--main-clr-txt); background-color: var(--main-clr); }
.bd-footer .t > div { display: flex; justify-content: space-between; }
.bd-footer .t > div > .l { max-width: 400px; display: flex; flex-direction: column; gap: 20px; }
.bd-footer .t > div > .l p { font-size: 17px; line-height: 1.5; }
.bd-footer .t > div > .l .link { font-weight: 600; }
.bd-footer .t > div > .r { width: 100%; max-width: 500px; display: grid; grid-template-columns: repeat(2, 1fr); }
.bd-footer .t > div > .r > div { display: flex; flex-direction: column; gap: 25px; }
.bd-footer .t > div > .r > div h3 { font-size: 20px; font-weight: 600; }
.bd-footer .t > div > .r > div ul { gap: 12px; list-style: none; display: flex; flex-direction: column; }
.bd-footer .t > div > .r > div ul li { }
.bd-footer .t > div > .r > div ul li a { font-size: 17px; }
.bd-footer .b { padding: 15px 0; background-color: var(--main-clr-2); color: var(--main-clr-2-txt); }
.bd-footer .b > div { }
.bd-footer .b > div p { text-align: center; font-size: 15px; color: var(--main-clr-txt);}
.bd-footer .b > div p a { font-weight: 600;}
/* .bd-footer .bd-logo img { filter: invert(1) brightness(100);} */

.bd-social { display: flex; align-items: center; gap: 10px; margin-top: 15px; }
.bd-social a { font-size: 24px; }




.bd-banner { padding-top: 100px; background-size: cover; background-repeat: no-repeat; background-attachment: scroll; background-position: center; position: relative; overflow: hidden; }
.bd-banner{ border-radius: 0 0 50px 50px; border-bottom: 5px solid var(--main-clr-2); box-shadow: 0 5px 0px 0 rgba(157, 255, 77, 0.2);}
.bd-banner::before { opacity: .8; content: ''; display: inline-block; background: linear-gradient(90deg, var(--main-clr) 0%, rgba(0,0,0,25) 30%, var(--main-clr) 100%); position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 2; }
.bd-banner > div { padding-left: 300px; position: relative; z-index: 10; }
.bd-banner > div h1 { font-weight: 600; font-size: 42px; color: var(--main-clr-2-txt);}
.bd-banner .arr { z-index: 2; height: calc(100% + 40px); width: auto; position: absolute; top: 50%; transform: translateY(-50%); filter: brightness(0) contrast(1);}
.bd-banner .arr.left { left: 0; opacity: .5;}
.bd-banner .arr.right { opacity: .25; right: 0; transform: rotate(180deg) translateY(50%); }


.bd-tabs-template-1 { margin: 40px auto 40px; width: 100%; display: flex; align-items: center; overflow-x: auto; overflow-y: hidden;}
.bd-tabs-template-1 ul { --space: 60px; gap: var(--space); display: flex; align-items: center; justify-content: center; width: fit-content; margin: 0 auto; list-style: none; padding: 0; white-space: nowrap; }
.bd-tabs-template-1 ul li { }
.bd-tabs-template-1 ul li button { font-size: 18px; font-weight: 400; position: relative; display: flex; align-items: center; gap: 10px; border: none; outline: none; background-color: transparent; }
.bd-tabs-template-1 ul li:not(:first-child) button::after { font-size: 13px; left: calc((var(--space) / 2) * -1); content: '\f105'; display: inline-block; font-family: 'Line Awesome Free'; font-weight: 700; position: absolute; top: 50%; transform: translateY(-50%) translateX(-50%); pointer-events: none; }
.bd-tabs-template-1 ul li button::before { --size: 40px; font-size: 14px; font-weight: 400; background-color: #f9f9f9; border: 1px solid #e8ecef; content: ''; display: inline-block; width: var(--size); height: var(--size); min-width: var(--size); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-sizing: border-box; transition: all .2s ease; }
.bd-tabs-template-1 ul li:nth-child(1) button::before { content: '1'; }
.bd-tabs-template-1 ul li:nth-child(2) button::before { content: '2'; }
.bd-tabs-template-1 ul li:nth-child(3) button::before { content: '3'; }
.bd-tabs-template-1 ul li:nth-child(4) button::before { content: '4'; }
.bd-tabs-template-1 ul li:nth-child(5) button::before { content: '5'; }
.bd-tabs-template-1 ul li:nth-child(6) button::before { content: '6'; }
.bd-tabs-template-1 ul li button.current::before { background-color: var(--main-clr); border-color: var(--main-clr); color: var(--main-clr-txt); }
.bd-tabs-template-1 ul li button.active::before { content: '\f00c'; background-color: var(--main-clr); border-color: var(--main-clr); color: var(--main-clr-txt); font-family: 'Line Awesome Free'; font-weight: 700; padding-top: 2px; }


.bd-template-1 { --w: 80px; gap: 30px; padding: 30px; display: flex; background-color: #f4f5f7; border-radius: 18px; align-items: center; margin-bottom: 30px; }
/* .bd-template-1 { --w: 80px; gap: 30px; padding: 30px; display: flex; background-color: #f4f5f7; border-radius: 18px; align-items: center; margin-bottom: 30px; background-color: rgba(248, 120, 15, .2); color: var(--main-clr-2);} */
.bd-template-1 .l { width: var(--w); min-width: var(--w); }
.bd-template-1 .l .icon { font-size: 32px; background-color: var(--black); color: var(--white); width: 100%; aspect-ratio: 1; border-radius: 18px; display: flex; align-items: center; justify-content: center; }
/* .bd-template-1 .l .icon { font-size: 32px; background-color: var(--white); color: var(--main-clr); border: 1px solid rgba(255, 77, 77, 0.2); width: 100%; aspect-ratio: 1; border-radius: 18px; display: flex; align-items: center; justify-content: center;} */
.bd-template-1 .l .icon { font-size: 32px; background-color: var(--white); color: var(--black); border: 1px solid rgba(var(--black-o), .1); width: 100%; aspect-ratio: 1; border-radius: 18px; display: flex; align-items: center; justify-content: center; }
.bd-template-1 .r { }


.bd-template-2 { padding: 30px; display: flex; background-color: #f4f5f7; border-radius: 18px; flex-direction: column; }
.bd-template-2 > .h { border-color: #c9d2da; border-bottom: 1px solid rgba(var(--black-o), .1); padding-bottom: 15px; margin-bottom: 15px; display: flex; align-items: center; justify-content: space-between; }
.bd-template-2 > .h > .l { display: flex; align-items: center; gap: 15px; }
.bd-template-2 > .h > .l .back { --size: 38px; font-size: 16px; background-color: var(--black); color: var(--white); width: var(--size); height: var(--size); min-width: var(--size); display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; border: 1.5px solid var(--black); transition: all .2s ease; }
.bd-template-2 > .h > .l .back:hover { background-color: var(--white); color: var(--black); }
.bd-template-2 > .h > .l > .txt { display: flex; flex-direction: column; gap: 3px; }
.bd-template-2 > .h > .l > .txt strong { font-size: 12px; font-weight: 600; }
.bd-template-2 > .h > .l > .txt h3 { font-size: 22px; font-weight: 500; }
.bd-template-2 > .h > .r { }
.bd-template-2 > .b { }


.bd-search { height: 44px; border: 1px solid var(--main-clr); background-color: var(--white); border-radius: 12px; border: 1px solid rgba(var(--black-o), .1); display: flex; max-width: 300px; align-items: center; width: 100%; transition: all .2s ease; }
.bd-search input { padding: 0 15px; font-size: 14px; background-color: transparent; width: 100%; height: 100%; border: none; outline: none; }
.bd-search i { color: rgba(var(--black-o), .3); padding: 0 15px; min-width: fit-content; }


.bd-template-3 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.bd-template-3:has(.bd-form) { display: flex; flex-direction: column; gap: 20px; padding-top: 10px; }
.bd-template-3 button:not(.bd-btn) { font-size: 14px; padding: 15px 5px; border-radius: 12px; background-color: var(--white); color: var(--black); border: 1px solid rgba(var(--black-o), .1); cursor: pointer; transition: all .2s ease; }
.bd-template-3 button:not(.bd-btn):hover { background-color: var(--main-clr); color: var(--main-clr-txt);}
.bd-template-3.v2 { grid-template-columns: repeat(5, 1fr); }
.bd-template-3.v2 button:not(.bd-btn) { padding: 15px; display: flex; flex-direction: column; gap: 7px; align-items: center; }
.bd-template-3.v2 button:not(.bd-btn) img { height: 48px; width: 48px; object-fit: contain; }
.bd-template-3.v2 button:not(.bd-btn) span { font-size: 13px; }
.bd-template-3.v2 button:not(.bd-btn):hover { box-shadow: inset 0 0 0 1px var(--main-clr-2); background-color: white; border-color: var(--main-clr-2); color: var(--main-clr);}
.bd-template-3.v3 { grid-template-columns: repeat(4, 1fr); }
/* .bd-template-3.v3 button{ padding: 15px; display: flex; flex-direction: column; gap: 7px; align-items: center;} */
/* .bd-template-3.v3 button:hover{ box-shadow: inset 0 0 0 1px var(--main-clr-2); background-color: white; border-color: var(--main-clr-2);} */



.bd-template-4 { display: flex; flex-direction: column; border-radius: 10px; border: 1px solid rgba(var(--black-o), .1); box-shadow: 0 5px 15px 0 rgba(var(--black-o), .05); }
.bd-template-4 .img { padding: 30px; aspect-ratio: 1.5; display: flex; align-items: center; justify-content: center;}
.bd-template-4 .img img { width: 100%; height: 100%; object-fit: contain;}
.bd-template-4 .options { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.bd-template-4 .options:not(:has(> div)){ display: none;}
.bd-template-4 .options > div { display: flex; align-items: center; justify-content: space-between; }
.bd-template-4 .options > div > div { font-weight: 600; font-size: 15px; }
.bd-template-4 .options > div > div span { background-color: var(--main-clr); padding: 10px 20px; border-radius: 12px; display: flex; color: var(--main-clr-txt);}


.bd-template-5 { gap: 20px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; white-space: nowrap;}
.bd-template-5 > div { gap: 6px; display: flex; align-items: center; }
.bd-template-5 > div > div { --size: 20px; width: var(--size); height: var(--size); border-radius: 50%; }
.bd-template-5 > div > span { font-size: 13px; font-weight: 400; }


.bd-template-6 { margin: 20px auto; width: 310px; height: 416px; }
.bd-template-6 svg { }


.bd-template-7 { background-color: var(--white); border-radius: 12px; padding: 25px; }
.bd-template-7 .table { }
.bd-template-7 table { width: 100%; }
.bd-template-7 table thead { }
.bd-template-7 table thead tr { }
.bd-template-7 table thead tr th { padding: 8px; font-size: 12px; }
.bd-template-7 table tbody { }
.bd-template-7 table tbody tr { }
.bd-template-7 table tbody tr td { font-size: 12px; padding: 8px; color: #555; }
.bd-template-7 table tbody tr td:not(:first-child) { text-align: center; }
.bd-template-7 table .bd-check-input { --size: 15px; }


.bd-template-8 { margin-top: 15px; border: 1px solid rgba(var(--black-o), .1); border-right: 0; border-left: 0; color: #555; padding: 10px; text-align: center; font-size: 13px; box-shadow: 0px 15px 5px -10px rgba(var(--black-o), .025); }


.bd-template-9{}

.bd-template-10{ display: flex; gap: 16px; justify-content: space-between;}
.bd-template-10 .l{ display: flex; gap: 16px;}
.bd-template-10 .l .img{ --size: 171px; width: var(--size); min-width: var(--size); display: flex; background-color: #fff; border-radius: 18px; padding: 15px; aspect-ratio: 1; height: fit-content;}
.bd-template-10 .l .img img{ width: 100%; height: 100%; object-fit: contain; }
.bd-template-10 .r{ margin: 0 auto; background-color: var(--white); width: 100%; border-radius: 18px; display: flex; align-items: center; justify-content: center; padding: 7px 20px;}
.bd-template-10 .r .price{ display: flex; flex-direction: column; gap: 10px; text-align: end; align-items: center; text-align: center;}
.bd-template-10 .r .price span{ font-size: 13px; font-weight: 600;}
.bd-template-10 .r .price strong{ font-size: 32px; font-weight: 800; color: var(--main-clr);}
/* .bd-template-10 .r .price p{ max-width: 330px; font-size: 13px; font-weight: 500; color: var(--main-clr-txt); background-color: var(--main-clr); padding: 10px 15px; border-radius: 12px; line-height: 1.6;} */
.bd-template-10 .r .price p{ font-size: 13px; font-weight: 500; color: var(--main-clr-txt); background-color: var(--main-clr); padding: 10px 15px; border-radius: 12px; line-height: 1.6;}
.bd-template-10 .r .price p i{ margin-right: 5px;}


.bd-template-11{ display: flex; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px;}
.bd-template-11 > div{ flex: 1;}
.bd-template-11 > .l{ font-size: 13px; display: flex; flex-direction: column; gap: 4px;}
.bd-template-11 > .l > div{}
.bd-template-11 > .l > div label{ width: 70px; min-width: 70px; margin-right: 10px; display: inline-block; position: relative;}
.bd-template-11 > .l > div label::after{ content: ':'; display: inline-block; position: absolute; right: 0;}
.bd-template-11 > .l > div span{}
.bd-template-11 > .c{ display: flex; align-items: center; justify-content: center;}
.bd-template-11 > .c img{ height: 50px;}
.bd-template-11 > .r{ display: flex; gap: 4px; align-items: flex-end; flex-direction: column;}
.bd-template-11 > .r > b{ font-size: 12px; font-weight: 600;}
.bd-template-11 > .r > strong{ font-size: 28px; font-weight: 700; color: var(--main-clr);}
.bd-template-11 > .r > span{ font-size: 12px;}


/* .bd-template-12 { display: flex; align-items: stretch; justify-content: center; margin-top: 30px; gap: 30px; } */
.bd-template-12 { display: flex; margin-top: 30px; gap: 30px; }
/* .bd-template-12 > div { background-color: #fff; border-radius: 18px; padding: 30px; border: 1px solid rgba(var(--black-o), .1); display: flex; flex-direction: column; justify-content: center;} */
.bd-template-12 > div { flex: 1; background-color: #fff; border-radius: 18px; padding: 30px; display: flex; flex-direction: column; justify-content: center;}
.bd-template-12 > .l { align-items: flex-start;}
.bd-template-12 > .l h3 { font-size: 20px; font-weight: 700; color: var(--main-clr); margin-bottom: 15px;}
.bd-template-12 > .l p { font-size: 15px; color: #555; line-height: 1.6; margin-bottom: 25px;}
.bd-template-12 > .l .actions { display: flex; gap: 15px; flex-wrap: wrap; }
.bd-template-12 > .l .actions button { width: fit-content; padding: 15px 30px; font-weight: 600; }
.bd-template-12 > .r h4 { font-size: 16px; font-weight: 600; margin-bottom: 20px; text-align: center;}
.bd-template-12 > .r ul { display: flex; flex-direction: column; gap: 15px;}
.bd-template-12 > .r ul li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500;}
.bd-template-12 > .r ul li .icon { width: 32px; height: 32px; border-radius: 50%; background-color: rgba(var(--black-o), .05); display: flex; align-items: center; justify-content: center; color: var(--main-clr); font-size: 14px;}

.bd-template-13{ padding: 30px; background-color: var(--white); border-radius: 18px; margin-bottom: 25px; text-align: center; display: flex; flex-direction: column; align-items: center;}
.bd-template-13 > i{ font-size: 60px; background-color: #28a745; color: #fff; margin-bottom: 20px; aspect-ratio: 1; padding: 20px; border-radius: 50%;}
.bd-template-13 > h3{ font-size: 32px; font-weight: 700; color: #28a745; margin-bottom: 15px;}
.bd-template-13 > .no{ display: flex; align-items: center; gap: 10px; margin-bottom: 15px;}
.bd-template-13 > .no > span{ }
.bd-template-13 > .no > b{ background-color: rgba(40, 167, 70, 0.2); padding: 6px 12px; border-radius: 12px; color: #0d4101;}
.bd-template-13 > p{ max-width: 500px; line-height: 1.5;}
.bd-template-13 > button{}



.bd-table-wrapper { text-align: left; background: #fff; padding: 20px; border-radius: 12px;}
.bd-table-wrapper h4 { margin-bottom: 15px; font-size: 18px;}
.bd-table { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; white-space: nowrap;}
.bd-table._4 { grid-template-columns: .8fr 150px 100px 90px;}
.summary-item label { display: block; font-size: 12px; color: #888; margin-bottom: 3px;}
.summary-item span { font-weight: 600; font-size: 15px; color: #555;}



#pdf-preview{ width: 21cm; position: absolute; top: -999999999px;}
#pdf-preview.active{ width: 21cm; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 200px 20px rgba(0, 0, 0, 1); height: fit-content; background-color: #fff; z-index: 1000;}
#pdf-preview .page { width: 21cm; height: 30.560cm; margin: auto;}

.page{ padding: 0px; --l: 100px; position: relative; padding-bottom: 70px;}
.page .bd-template-10{ flex-direction: column;}
.page .bd-template-10 .l{  position: relative;}
.page .bd-template-10 .l .img{ --size: var(--l); position: absolute; top: 50%; left: 20px; transform: translateY(-50%); padding: 10px;}
.page .bd-template-10 .l .bd-table-wrapper{ padding-left: calc(var(--l) + 15px + 30px); background-color: #f7f7f7; width: 100%;}
.page .bd-table{ grid-template-columns: repeat(5, 1fr);}
.page .bd-template-5 > div > span{ white-space: nowrap;}
.page .bd-template-7{ background-color: #f7f7f7;}
.page .bd-template-8{ background-color: #fff; border-radius: 18px; border: none; box-shadow: none;}
.page .bd-txt{ background-color: #fff; border: none;}
.page{}


.page-footer { padding: 20px 30px; position: absolute; bottom: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #eee;}
.page-footer .r img { height: 35px; }
.page-footer .l { display: flex; flex-direction: column; gap: 8px; font-size: 11px; color: #777; }
.page-footer .l div { display: flex; align-items: center; gap: 6px; }
.page-footer .l i { color: var(--main-clr); width: 14px; text-align: center; }



/* WRAPPERS */
.bd-wrapper-1 { display: flex; flex-direction: column; gap: 30px; }
.bd-wrapper-2 { display: grid; grid-template-columns: 1fr .4fr; gap: 30px; }
.bd-wrapper-3 { display: flex; align-items: center; gap: 25px; margin-top: 15px; }
.bd-wrapper-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-top: 20px; }





.bd-alert{ color: #0d4101; display: flex; flex-direction: column; gap: 13px; padding: 25px; background-color: #fff; border-radius: 18px; margin-bottom: 25px;}
.bd-alert > strong{ font-size: 20px; font-weight: 600;}
.bd-alert > p{ font-size: 15px; line-height: 1.4;}
.bd-alert > p b{ font-weight: 600; margin-bottom: 5px; display: inline-block;}
.bd-alert > p span{ color: rgb(140, 0, 0);}



.bd-content { font-size: 15px; }
.bd-content h2 { font-weight: 600; font-size: 22px; margin-bottom: 10px; }
.bd-content ul { padding-left: 1rem; margin-bottom: 15px; }
.bd-content strong { font-weight: 600; }


.bd-form { width: 100%; display: flex; flex-direction: column; gap: 20px; }
.bd-form.limited { max-width: 500px; }

.bd-form .__2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bd-form .__4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.bd-form + button { margin-top: 10px; }



.select-item { display: flex; flex-direction: column; gap: 10px; }
.select-item label { font-size: 17px; font-weight: 400; }

.bd-input { display: flex; flex-direction: column; gap: 10px; }
.bd-input label { font-size: 17px; font-weight: 400; }
.bd-input label small { opacity: .75; }
.bd-input > div { height: 56px; display: flex; align-items: center; }
.bd-input > div:has(textarea) { height: 120px; }
.bd-input > div > :is(input, select, textarea) { height: 100%; border-radius: 12px; padding: 0 15px; border-color: rgba(var(--black-o), .1); background-color: var(--white); border: 1px solid rgba(var(--black-o), .1); width: 100%; font-size: 16px; }
.bd-input.sm > div > :is(input, select, textarea) { font-size: 14px; }
.bd-input > div > :is(input, select, textarea):disabled { opacity: .5; }
.bd-input > div > textarea { padding: 15px;}
.bd-input > div > span:not(.select2) { display: flex; background-color: var(--white); border: 1px solid rgba(var(--black-o), .1); height: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 0 12px 12px 0; }
.bd-input > div:has(> span:not(.select2)) > input { border-top-right-radius: 0; border-bottom-right-radius: 0; border-right: none; }
.bd-input > div > span:not(.select2) svg { height: 25px; opacity: .75; }
.bd-input > div > span:not(.select2) i { font-size: 18px; opacity: .65; }
.bd-input > div:has(> span:not(.select2)) .select2-selection--single { border-radius: 12px 0 0 12px; border-right: none; }


.bd-check { display: flex; align-items: center; gap: 7px; }
.bd-check input,
.bd-check-input { --size: 20px; width: var(--size); height: var(--size); background-color: var(--white); vertical-align: top; background-repeat: no-repeat; background-position: center; background-size: contain; border: 1px solid rgba(0, 0, 0, .25); -webkit-appearance: none; -moz-appearance: none; appearance: none; -webkit-print-color-adjust: exact; color-adjust: exact; border-radius: 50%; }
.bd-check input:checked,
.bd-check-input:checked { border-color: var(--main-clr); background-color: var(--main-clr); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); }
.bd-check label { font-size: 15px; font-weight: 400; }



.bd-txt{ color: #555; font-size: 13px; padding: 15px; height: fit-content; border-radius: 12px; border: 1px solid rgba(var(--black-o), .1); font-family: inherit; line-height: 1.5; background-color: #f9f9f9;}



.select2-container { width: 100% !important; }
.select2-container .select2-selection--single { height: 56px; border-radius: 12px; padding: 0 15px; border-color: rgba(var(--black-o), .1); display: flex; align-items: center; }
.select2-container .select2-selection--single .select2-selection__rendered { font-size: 16px; height: 100%; display: flex; align-items: center; }

.select2-container--default .select2-results>.select2-results__options { display: flex; flex-direction: column; gap: 5px; padding: 10px; padding-top: 0; }
.select2-dropdown { border-color: rgba(var(--black-o), .1); border-radius: 0 0 12px 12px; }
.select2-search--dropdown { padding: 10px; }
.select2-container--default .select2-search--dropdown .select2-search__field { font-size: 14px; padding: 10px 15px; border-radius: 8px; border-color: rgba(var(--black-o), .2) !important; }
.select2-results__option--selectable { border-radius: 12px; padding: 7px 12px; font-size: 14px; transition: all .2s ease; }
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable { background-color: var(--main-clr); color: var(--main-clr-txt); }
.select2-results__option { font-size: 14px; }
.select2-container--default .select2-results__option--selected { background-color: rgba(var(--black-o), .05); }

.select2-container--default .select2-selection--single .select2-selection__arrow { top: 50%; transform: translateY(-50%); width: 40px; }




.bd-btn { padding: 15px 25px; background-color: var(--main-clr); color: var(--main-clr-txt); border-radius: 12px; cursor: pointer; transition: all .2s ease; gap: 10px; display: flex; align-items: center; justify-content: center; }
.bd-btn:hover { background-color: var(--main-clr-2); color: var(--main-clr-2-txt); }
.bd-btn.green { background-color: #28a745; color: white; }
.bd-btn.green:hover { background-color: #218838; }
.bd-btn.red { background-color: #dc3545; color: white; }
.bd-btn.red:hover { background-color: #c82333; }
.bd-btn i { font-size: .9em; }


.bd-btns-1{ display: flex; gap: 15px; margin-bottom: 15px; justify-content: flex-end;}





/* 1 from 20 */
.mt-0 { margin-top: 0px; }
.mt-1 { margin-top: 2px; }
.mt-2 { margin-top: 4px; }
.mt-3 { margin-top: 6px; }
.mt-4 { margin-top: 8px; }
.mt-5 { margin-top: 10px; }
.mt-6 { margin-top: 12px; }
.mt-7 { margin-top: 14px; }
.mt-8 { margin-top: 16px; }
.mt-9 { margin-top: 18px; }
.mt-10 { margin-top: 20px; }
.mt-11 { margin-top: 22px; }
.mt-12 { margin-top: 24px; }
.mt-13 { margin-top: 26px; }
.mt-14 { margin-top: 28px; }
.mt-15 { margin-top: 30px; }
.mt-16 { margin-top: 32px; }
.mt-17 { margin-top: 34px; }
.mt-18 { margin-top: 36px; }
.mt-19 { margin-top: 38px; }
.mt-20 { margin-top: 40px; }

/* Modal Styles */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); display: none; justify-content: center; align-items: center; z-index: 1000; opacity: 0; transition: opacity 0.3s ease;}

.modal-overlay.active { display: flex; opacity: 1;}

.modal-content { background-color: var(--white); padding: 30px; border-radius: 18px; width: 100%; max-width: 400px; text-align: center; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); transform: scale(0.8); transition: transform 0.3s ease;}

.modal-overlay.active .modal-content { transform: scale(1);}

.modal-header h3 { font-size: 22px; margin-bottom: 10px; color: var(--black);}

.modal-body { margin: 20px 0;}

.modal-body p { font-size: 14px; color: #666; margin-bottom: 20px;}

.otp-inputs { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px;}

.otp-inputs input { width: 50px; height: 50px; text-align: center; font-size: 24px; border: 1px solid #ddd; border-radius: 8px; font-weight: 600;}

.otp-inputs input:focus { border-color: var(--main-clr); box-shadow: 0 0 0 3px rgba(0, 254, 195, 0.1);}

.timer-text { font-size: 13px; color: #888; margin-bottom: 15px;}

.resend-btn { background: none; border: none; color: var(--main-clr-2); font-weight: 600; cursor: pointer; font-size: 14px; text-decoration: underline;}

.resend-btn:disabled { color: #ccc; cursor: not-allowed; text-decoration: none;}

.verify-btn { width: 100%; padding: 15px; background-color: var(--main-clr); color: var(--main-clr-txt); border-radius: 12px; font-weight: 600; cursor: pointer; transition: background-color 0.2s;}

.verify-btn:hover { background-color: var(--main-clr-2);}

.close-modal { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 20px; cursor: pointer; color: #999;}

/* Valuation Stage Styles */
.valuation-card { background: var(--white); border-radius: 18px; padding: 40px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05);}
.valuation-card .price-tag { font-size: 48px; font-weight: 700; color: var(--main-clr-2); margin: 20px 0;}
.appointment-success { text-align: center; padding: 50px;}
.appointment-success i { font-size: 64px; color: var(--main-clr); margin-bottom: 20px;}

/* Input Validation Styles */
.bd-input input.error-input,
.bd-input select.error-input,
.select-item select.error-input,
.js-example-basic-single + .select2-container .select2-selection {
    transition: all 0.3s ease;
}

/* Standart inputlar için hata durumu */
.bd-input input.error-input,
.bd-input select.error-input {
    border: 1px solid #ff4d4d !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1) !important;
    animation: shake 0.4s ease-in-out;
}

/* Select2 container hata durumu */
.select2-container--error .select2-selection {
    border: 1px solid #ff4d4d !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1) !important;
    animation: shake 0.4s ease-in-out;
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}



/* Hero Section */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    color: white;
    background: #000;
    margin-top: 0;
    padding: 0 20px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%), 
                url('/view/frontend/assets/img/hero_car_luxury.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    margin-inline: auto;
}

.hero-tag {
    background: var(--primary-gradient);
    color: var(--main-clr-txt);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
    animation: fadeInDown 0.8s ease;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease backwards;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    flex-wrap: wrap;
}

/* Buttons Enhancement */
.btn-modern {
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn-modern.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 15px 30px rgba(104, 248, 15, 0.4);
    color: var(--main-clr-txt);
}

.btn-modern.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(104, 248, 15, 0.5);
    color: white;
}

.btn-modern.outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-modern.outline:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-5px);
}

/* Stats Glass Section */
.stats-wrapper {
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255,255,255,0.5);
}

.stat-card {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.stat-card:last-child { border-right: none; }

.stat-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Global */
.section-padding { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--secondary);
}
.section-header p {
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* How it works refined */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.work-card {
    background: #fff;
    padding: 60px 45px;
    border-radius: 35px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.work-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-premium); }
.work-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    z-index: -1;
}
.work-icon {
    width: 70px;
    height: 70px;
    background: rgba(73, 248, 15, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.work-card h4 { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; color: var(--secondary); }
.work-card p { color: var(--text-gray); font-size: 1rem; line-height: 1.7; }

/* Trust Section */
.trust-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.trust-img {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    position: relative;
}
.trust-img img { width: 100%; height: auto; display: block; }

.feature-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.feature-check {
    width: 28px;
    height: 28px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; margin-top: 3px; flex-shrink: 0;
}
.feature-txt h5 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: var(--secondary); }
.feature-txt p { color: var(--text-gray); font-size: 0.95rem; }

/* Brand Grid Scroll Mask */
.brand-section { background: #fff; padding: 100px 0; border-top: 1px solid #f5f5f5; }
.brand-grid {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    display: flex; justify-content: space-between; align-items: center;
    opacity: 0.4; filter: grayscale(1); flex-wrap: wrap; gap: 40px;
}
.brand-grid img { height: 32px; transition: var(--transition); }
.brand-grid img:hover { opacity: 1; filter: none; transform: scale(1.1); }

/* Floating Animation */
.float-anim { animation: floating 5s ease-in-out infinite; }
@keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }







/* CONTACT */
.page-banner {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background: #000;
}

.banner-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('/view/frontend/assets/img/contact_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 10;
}

.banner-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    margin-bottom: 100px;
}

.contact-info-panel {
    background: var(--white);
    padding: 50px;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(104, 248, 15, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-txt h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
}

.info-txt p, .info-txt a {
    color: var(--text-gray);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.info-txt a:hover { color: var(--primary); }

/* Contact Form Panel */
.contact-form-panel {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-panel h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

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

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.input-group.full { grid-column: span 2; }

.input-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-left: 5px;
}

.input-group :is(input, textarea, select) {
    background: #f8f9fa;
    border: 2px solid #f1f2f6;
    padding: 18px 25px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group :is(input, textarea, select):focus {
    border-color: var(--primary);
    background: white;
    outline: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.btn-send {
    background: var(--primary-gradient);
    color: var(--main-clr-txt);
    border: none;
    padding: 20px 50px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 15px 30px rgba(104, 248, 15, 0.4);
}

.btn-send:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(104, 248, 15, 0.4);
}

/* Map Section */
.map-section {
    height: 500px;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: var(--shadow-premium);
}






/* ABOUT */
/* Page Banner */
.page-banner.about .banner-bg {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('/view/frontend/assets/img/about_banner.png');
}
.page-banner.blog .banner-bg {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('/view/frontend/assets/img/about_banner.png');
}

/* About Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.intro-content h2 span{ background-color: var(--main-clr); color: var(--main-clr-txt) !important; padding: 0 7px;}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Mission & Vision */
.mission-vision {
    background-color: var(--light);
    border-radius: 60px;
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-card {
    background: white;
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.mv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-premium); }

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(104, 248, 15, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.mv-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }

/* Values Table */
.values-section { text-align: center; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    padding: 50px;
    border-radius: 40px;
    background: white;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.value-card:hover { border-color: var(--primary); transform: scale(1.02); }

.value-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.value-card h4 { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; }

/* Stats */
.about-stats {
    background: var(--secondary);
    color: white;
    padding: 100px 0;
    border-radius: 60px 60px 0 0;
    margin-top: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.6;
}












/* BLOGS */
/* Blog Grid */
.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.blog-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gradient);
    color: #000;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.blog-meta span i {
    margin-right: 6px;
    color: var(--primary);
}

.blog-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--secondary);
    transition: var(--transition);
}

.blog-card:hover h3 {
    color: var(--primary);
}

.blog-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: var(--primary);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #f8f9fa;
    color: var(--secondary);
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.page-link.active, .page-link:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(104, 248, 15, 0.2);
}


@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}






/* STYLE */
/* Blog Header */
.blog-header {
    padding-top: 150px;
    padding-bottom: 50px;
    background: #fcfcfc;
}

.blog-breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.blog-breadcrumb a {
    transition: var(--transition);
}

.blog-breadcrumb a:hover {
    color: var(--primary);
}

.post-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 30px;
}

.post-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.post-meta-top span i {
    color: var(--primary);
    margin-right: 8px;
}

.post-featured-img {
    width: 100%;
    height: clamp(300px, 50vh, 600px);
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    margin-bottom: 100px;
}

/* Content Typography */
.post-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #444;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 50px 0 25px;
    color: var(--secondary);
}

.post-content blockquote {
    background: var(--light);
    border-left: 5px solid var(--primary);
    padding: 40px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.3rem;
    border-radius: 0 20px 20px 0;
    color: var(--secondary);
}

.post-content img {
    border-radius: 25px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    width: fit-content;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.recent-post-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-info span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    transition: var(--transition);
}

.category-list li a:hover {
    color: var(--primary);
}

.category-count {
    background: #f0f0f0;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Share Section */
.post-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.share-label {
    font-weight: 700;
    font-size: 1rem;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.share-btn.fb { background: #3b5998; }
.share-btn.tw { background: #1da1f2; }
.share-btn.ln { background: #0077b5; }
.share-btn.wa { background: #25d366; }

.share-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    background: #fcfcfc;
}

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

@media (max-width: 1280px) {
    .bd-template-10{ flex-direction: column;}

    .contact-container{ display: flex; flex-direction: column;}

}

@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr;}
    .sidebar { order: 2;}


    .bd-footer .t > div,
    .bd-wrapper-2{ display: flex; flex-direction: column; gap: 50px;}
    
    .bd-form .__4{ grid-template-columns: repeat(2, 1fr);}

    .bd-wrapper-4:not(.page-item){ display: flex; flex-direction: column;}
    .bd-table-wrapper{ width: 100%;}

    .mission-vision{ padding: 30px; gap: 30px;}
    .mv-card{ padding: 25px;}
    
    .values-grid{ display: flex; flex-direction: column;}
}

@media (max-width: 768px) {
    .related-grid { grid-template-columns: 1fr;}


    .bd-logo img{ height: 35px;}

    .hero-content{ text-align: center;}
    .hero-content h1{ font-size: 32px; line-height: 1.5;}
    .hero-tag{ font-size: 10px; font-weight: 600;}
    .hero-btns{ justify-content: center;}

    .section-header h2{ font-size: 36px;}

    .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 50px 20px; padding: 25px;}
    .stat-card{ border: none; padding: 0;}
    .stat-card h3{ font-size: 32px;}
    .stat-card p{ font-size: 12px;}

    .trust-section{ gap: 30px;}

    .works-grid,
    .trust-section{ display: flex; flex-direction: column;}

    .bd-footer .t > div > .r{ display: flex; flex-direction: column; gap: 40px;}

    .home-hero{ height: fit-content; min-height: unset; padding-top: 120px; padding-bottom: 150px;}

    .bd-banner > div{ padding: 50px 20px;}
    .bd-banner .arr{ display: none;}


    .bd-template-1 .l{ display: none;}
    .bd-wrapper-2,
    .bd-form .__2{ display: flex; flex-direction: column;}

    .bd-template-3,
    .bd-template-3.v3{ grid-template-columns: repeat(2, 1fr);}
    /* .bd-template-3{ display: flex; flex-wrap: wrap;} */
    .bd-template-3 button:not(.bd-btn){ padding: 15px 15px;}
    .bd-template-3.v2{ grid-template-columns: repeat(4, 1fr);}

    .bd-template-2{ padding: 15px;}
    .bd-template-7{ padding: 15px; overflow-x: auto;}

    .bd-template-6{ width: 310px;}

    .bd-form .__4{ display: flex; flex-direction: column;}

    .bd-template-12{ flex-direction: column;}

    .bd-table,
    .bd-table._4{ grid-template-columns: repeat(2, 1fr);}
    
    .bd-template-10 .l{ flex-direction: column;}
    
    .bd-btn{ font-size: 15px;}

    .intro-grid,
    .mission-vision{ display: flex; flex-direction: column;}

    .banner-content{ padding-left: 15px; padding-right: 15px;}
    .banner-content h1{ font-size: 42px;}

    .intro-content h2{ font-size: 36px;}

    .form-grid{ display: flex; flex-direction: column; gap: 0;}
    .contact-form-panel,
    .contact-info-panel{ padding: 50px 25px;}
    .contact-info-panel h3,
    .contact-form-panel h2{ font-size: 24px;}
}

@media screen and  (max-width: 668px) {
    .bd-template-3.v2{ grid-template-columns: repeat(3, 1fr);}
}

@media screen and (max-width: 567px) {
    .bd-template-3.v2{ grid-template-columns: repeat(2, 1fr);}
}





.valuation-price{ display: flex; align-items: center; gap: 10px;}
.valuation-price .spinner {
  width: 16px;
  min-width: 16px;
  display: inline-block;
  height: 16px;
  border: 2px solid var(--main-clr-2);
  border-top-color: var(--main-clr);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}





/* ===== YAPIŞKAN İLETİŞİM BUTONLARI ===== */
.sticky-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.sticky-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sticky-btn:hover::before {
    width: 100px;
    height: 100px;
}

.sticky-btn:hover {
    transform: scale(1.15) translateY(-4px) rotate(5deg);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3), 0 6px 18px rgba(0, 0, 0, 0.2);
}

.sticky-btn:active {
    transform: scale(1.05) translateY(-2px);
}

.sticky-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    animation: pulseGreen 3s ease-in-out infinite;
}

.sticky-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0a6e5f 100%);
    animation: none;
}

.sticky-phone {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    animation: pulseRed 3s ease-in-out infinite;
}

.sticky-phone:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #8b0000 100%);
    animation: none;
}

.sticky-btn svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sticky-btn:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(37, 211, 102, 0.5), 0 0 30px rgba(37, 211, 102, 0.4);
    }
}

@keyframes pulseRed {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4), 0 4px 12px rgba(211, 47, 47, 0.3);
    }
    50% {
        box-shadow: 0 8px 24px rgba(211, 47, 47, 0.6), 0 4px 12px rgba(211, 47, 47, 0.5), 0 0 30px rgba(211, 47, 47, 0.4);
    }
}

/* Mobil için optimizasyon */
@media (max-width: 768px) {
    .sticky-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 55px;
        height: 55px;
    }
    
    .sticky-btn svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .sticky-contact-buttons {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }
    
    .sticky-btn {
        width: 50px;
        height: 50px;
    }
    
    .sticky-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Animasyon için ek detay */
.sticky-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.sticky-btn:hover::before {
    animation: none;
}

