@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap);

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

html {
    font-family: "Inter", "Poppins", sans-serif;
    --max-w: 1200px;
    --dp: 10px;
    --main-clr: #b4985a;
    --main-clr-txt: #fff;
    --rounded-circle: 50%;
    --rounded-full: 999px;
    
    /* Modern Design System */
    --primary-50: #fefbf3;
    --primary-100: #fdf4e1;
    --primary-200: #fae8c2;
    --primary-300: #f6d799;
    --primary-400: #f0c16e;
    --primary-500: #b4985a;
    --primary-600: #a08749;
    --primary-700: #8a723d;
    --primary-800: #745f34;
    --primary-900: #5e4d2c;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-500) 0%, #d4af37 50%, var(--primary-600) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 350ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body,
html {
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
}


.bido-container {
    width: 100%;
    max-width: var(--max-w);
    padding: 0 var(--px);
    margin: 0 auto;
}

.px {
    padding-left: var(--px);
    padding-right: var(--px);
}

.h-100vh {
    min-height: 100vh;
}

a {
    color: var(--main-clr);
    transition: .2s linear;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
}

/* .dpy{padding-top: 0;padding-bottom: 100px;} */
.dpy {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.img-hover-scale .img {
    overflow: hidden;
    display: flex;
}

.img-hover-scale .img img {
    transition: all .5s ease;
}

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

.home-sec-pr .card-box {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: var(--space-8) var(--space-6);
    height: 350px;
    display: flex;
    align-items: flex-end;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    cursor: pointer;
    transform: translateY(0);
}

.home-sec-pr .card-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    transition: var(--transition-base);
}

.home-sec-pr .card-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: 1;
    transition: var(--transition-base);
}

.home-sec-pr .card-box .content {
    position: relative;
    z-index: 2;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.home-sec-pr .card-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    font-family: "Inter", sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.home-sec-pr .card-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

.home-sec-pr .card-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.home-sec-pr .card-box:hover::before {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.home-sec-pr .card-box:hover::after {
    opacity: 0.1;
}

.home-sec-pr .card-box:hover .content {
    transform: translateY(0);
}

.home-sec-pr .card-box:hover h4 {
    color: var(--primary-300);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Glass Effect Cards */
.card-link {
    text-decoration: none;
    display: block;
}

.card-link .card-box {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-bounce);
}


html:has(header.open-menu) {
    overflow: hidden;
}

/* MODERN HEADER CSS */
header {
    padding: var(--space-6) 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition-slow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

html:has(.bd-entry) header {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

header.move {
    top: -90px;
    transition: var(--transition-fast);
}

header.sticky {
    background: rgba(255, 255, 255, 0.98) !important;
    color: var(--neutral-800) !important;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* header > .t{ padding: 15px var(--dp);}
header > .t > div{ max-width: var(--max-w); width: 100%; margin: 0 auto; display: flex;} */
header>.t>div {
    display: flex;
    margin-bottom: 20px;
}

header>.t>div>div {
    flex: 1;
}

header>.t>div>.c {
    display: flex;
    align-items: center;
    justify-content: center;
}

header>.t>div>.c .logo {
    color: inherit;
    height: 70px;
    transition: var(--transition-base);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

header>.t>div>.c .logo:hover {
    transform: scale(1.05);
}

header>.t>div>.c .logo svg {
    height: 25px;
    fill: currentColor;
}

header>.t>div>.c .logo img {
    height: 100%;
}

header>.t>div>.r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* header > .b{ padding: 0 var(--dp) 15px;}
header > .b > div{ max-width: var(--max-w); width: 100%; margin: 0 auto; display: flex;} */
header>.b>div {
    display: flex;
}

header>.b>div>div {
    flex: 1;
}

header>.b>div>.c {
    display: flex;
    align-items: center;
    justify-content: center;
}

header>.b>div>.c nav ul {
    gap: var(--space-10);
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
}

header>.b>div>.c nav ul li a {
    opacity: 0.8;
    font-size: 0.95rem;
    font-weight: 500;
    color: inherit;
    white-space: nowrap;
    transition: var(--transition-base);
    position: relative;
    text-decoration: none;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
}

header>.b>div>.c nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

header>.b>div>.c nav ul li a:hover,
header>.b>div>.c nav ul li a.active {
    opacity: 1;
    background: rgba(180, 152, 90, 0.1);
    color: var(--primary-600);
    transform: translateY(-2px);
}

header>.b>div>.c nav ul li a:hover::before,
header>.b>div>.c nav ul li a.active::before {
    width: 80%;
}

header>.b>div>.r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

header .header-menu {
    overflow-y: auto;
    padding-bottom: 30px;
    background-color: rgba(250, 252, 255, 0.975);
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-top: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
}

header .header-menu {
    transform-origin: top center;
    transition: all .3s ease;
    opacity: 1;
    transform: scale(0) translateY(-50%);
    pointer-events: none;
}

header.open-menu .header-menu {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

header .header-menu>.t>div {
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-menu>.b {
    height: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

header .header-menu>.b>div {
    display: flex;
    justify-content: space-between;
}

header .header-menu>.b>div .l {
    width: 100%;
}

header .header-menu>.b>div .r {
    width: 100%;
    max-width: 300px;
}

header .header-menu>.b .top-right {
    position: absolute;
    right: 20px;
    top: 20px;
}

.top-right {
    position: absolute;
    right: 20px;
    top: 20px;
}

.ghost-header {
    height: 106px;
}


footer {
    box-shadow: 0 -20px 30px -20px rgba(0, 0, 0, .05);
    padding: 70px 0 20px;
}

footer>div {
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer>div .logo {
    color: #000;
}

footer>div .logo svg {
    height: 40px;
}

footer>div h3 {
    margin: 0;
}

footer>div ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

footer>div ul li :is(a, span) {
    font-size: 1rem;
    color: inherit;
    opacity: .75;
    transition: all .2s ease;
}

footer>div ul li a:hover {
    color: var(--main-clr);
    overflow: 1;
}

footer>div .b {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    white-space: nowrap;
}

footer>div .b .r ul {
    margin: 0;
}

footer>div .b .r ul li a {
    text-decoration: underline;
}


.social-template {
    display: flex;
    gap: 35px;
    justify-content: center;
}

.social-template>a {
    --size: 45px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: var(--size);
    padding: 0;
}

.social-template>a svg {
    height: 18px;
    fill: currentColor;
}


.languages {
    display: flex;
    position: relative;
}

.languages>button {
    border: 1px solid currentColor;
    padding: 0;
    padding-left: 10px;
    gap: 10px;
    font-size: 10px;
    height: 24px;
    border-radius: var(--rounded-full);
    color: currentColor;
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
}

.languages>button>div {
    transform: translateX(1px);
    height: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}

.languages>button>div svg {
    height: 15px;
    fill: currentColor;
}


.search-template-1 {
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    position: relative;
}

.search-template-1::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .2s ease;
    border-bottom: 1.5px solid var(--main-clr);
    width: 0%;
}

.search-template-1.v2::before {
    border-width: 1px;
}

.search-template-1.v2::before,
.search-template-1:hover::before,
.search-template-1:focus-within::before {
    width: 100%;
}

.search-template-1>button {
    color: inherit;
    border: none;
    outline: none;
    display: flex;
    background-color: transparent;
}

.search-template-1>button svg {
    height: 20px;
    fill: currentColor;
    transition: all .2s ease;
}

.search-template-1.v2>button svg,
.search-template-1:hover>button svg,
.search-template-1:focus-within>button svg {
    fill: var(--main-clr);
}

.search-template-1>input {
    font-size: 14px;
    font-weight: 400;
    color: inherit;
    padding-left: 5px;
    padding-right: 10px;
    height: 35px;
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.search-template-1>input::placeholder {
    color: inherit;
    opacity: .75;
}

.search-template-1.v2>input {
    color: var(--main-clr);
}

.search-template-1.v2>input::placeholder {
    color: var(--main-clr);
}


.samples {
    color: inherit;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    outline: none;
}

.samples>span {
    white-space: nowrap;
    display: inline-block;
    position: relative;
    line-height: 1;
}

.samples>.icon {
    position: relative;
    display: flex;
}

.samples>.icon svg {
    height: 20px;
    fill: currentColor;
}

.samples>.icon>small {
    --size: 16px;
    font-size: 10px;
    transform: translate(50%, -50%);
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--main-clr);
    color: var(--main-clr-txt);
    border-radius: var(--rounded-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
}


.menu-template-1 {
    position: relative;
}

.menu-template-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-template-1>ul {
    gap: 25px;
    max-width: 220px;
    width: 100%;
    border-right: 1px solid var(--main-clr);
    display: flex;
    flex-direction: column;
}

.menu-template-1>ul>li>a {
    font-size: 16px;
    padding-right: 50px;
    font-weight: 500;
    display: flex;
    padding: 0;
    transition: all .2s ease;
    position: relative;
}

.menu-template-1>ul>li>a {
    color: #b2b2b2;
}

.menu-template-1>ul>li>a.active,
.menu-template-1>ul>li>a:hover {
    color: var(--main-clr);
    opacity: 1;
}

/* .menu-template-1 > ul > li > a > button{ --size: 25px; color: var(--main-clr); position: absolute; top: 50%; right: 0; transform: translate(50%, -50%); width: var(--size); height: var(--size); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--main-clr); background-color: #fff; opacity: 0; transition: transform .5s cubic-bezier(0.99,-0.01, 0.63, 0.99), opacity .1s ease;} */
.menu-template-1>ul>li>a>button {
    --size: 25px;
    color: var(--main-clr);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-clr);
    background-color: #fff;
    opacity: 0;
    transition: transform .5s ease, opacity .1s ease;
}

.menu-template-1>ul>li>a>button svg {
    height: 15px;
}

.menu-template-1>ul>li>a.active>button {
    transform: translate(50%, -50%) rotate(180deg);
    opacity: 1;
}

.menu-template-1>ul>li>ul {
    width: 310px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: absolute;
    left: 220px;
    top: 0;
    padding-left: 50px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: all .3s ease;
}

.menu-template-1>ul>li>a.active+ul {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.menu-template-1>ul>li>ul>li>a {
    font-size: 15px;
    color: #000;
    font-weight: 300;
    transition: all .2s ease;
}

.menu-template-1>ul>li>ul>li>a:hover {
    color: var(--main-clr);
}


.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--main-clr);
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    border-radius: 0;
    padding: 3px;
}

.lg-backdrop,
.lg-outer .lg-thumb-outer {
    background-color: rgba(250, 252, 255, 0.95);
}

.lg-next,
.lg-prev {
    background-color: transparent;
    color: var(--main-clr);
    border: 1px solid var(--main-clr);
    transition: all .2s ease;
}

.lg-next:hover,
.lg-prev:hover {
    background-color: var(--main-clr);
}

.lg-toolbar .lg-icon:hover {
    color: #000;
}


.bd-entry {
    position: relative;
    min-height: 300px;
}

.bd-entry::before {
    /* background-color: rgba(0, 0, 0, .5); */
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bd-entry img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bd-entry>div:not(.breadcrumb):not(.slider) {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.bd-entry>div>h1 {
    font-size: 52px;
    color: #fff;
    font-weight: 300;
}

.bd-entry>div>p {
    font-size: 13px;
    color: #fff;
    opacity: .75;
}

.bd-entry>div.wrp {
    flex-direction: column;
}

.bd-entry .breadcrumb {
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translate(-50%, 0);
    z-index: 5;
}

.bd-entry .breadcrumb ol {
    color: #fff;
    padding: 0 10px;
    margin: 0;
}

.bd-entry-v2 {
    padding: 70px 0;
}

.bd-entry.video {
    height: 100dvh;
}

.bd-entry.video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-entry.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.bd-entry.video video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

.bd-entry>button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-100%) rotate(90deg);
    transform-origin: bottom right;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    line-height: 1;
    gap: 10px;
    transition: all .2s ease;
}

.bd-entry>button:hover {
    gap: 15px;
}

.bd-entry>button span {
    font-size: 14px;
    color: #fff;
}

.bd-entry>button::after {
    content: '';
    border-top: 3px solid var(--main-clr);
    transform: translateY(1px);
    width: 35px;
    min-width: 35px;
    display: inline-block;
}


.bd-btn-1 {
    color: var(--main-clr);
    gap: 8px;
    font-size: 10px;
    margin: 0 auto;
    background-color: transparent;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bd-btn-1 svg {
    fill: currentColor;
    height: 15px;
}

.bd-btn-1>* {
    transition: all .3s ease;
}

.bd-btn-1:hover>* {
    transform: scale(1.3);
}

.bd-btn-1.v2 {
    flex-direction: row;
}

.bd-btn-1.v2:hover>* {
    transform: scale(1.1);
}

.bd-btn-2 {
    font-weight: 600;
    display: flex !important;
    width: fit-content;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bd-btn-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.bd-btn-2:hover::before {
    left: 100%;
}

.bd-btn-2:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: white;
    text-decoration: none;
}

.bd-btn-2 svg {
    height: 20px;
    margin-right: var(--space-2);
    transition: var(--transition-base);
}

.bd-btn-2:hover svg {
    transform: translateX(3px);
}

.bd-btn-2.active {
    color: var(--main-clr);
}

.bd-btn-2.active svg {
    transform: rotate(90deg);
}

.bd-btn-2.sm {
    font-size: 13px;
}

.bd-btn-2.sm svg {
    height: 16px;
}

.bd-btn-2.lg {
    font-size: 18px;
    gap: 5px;
}

.bd-btn-2.lg svg {
    height: 32px;
}


.bd-btn-hover {
    transition: all .3s ease;
}

.bd-btn-hover:hover {
    color: var(--main-clr) !important;
}

.bd-btn-hover svg {
    transition: all .3s ease;
}

.bd-btn-hover:hover svg {
    margin-right: 12px;
    transform: translateX(4px);
}


.bd-breadcrumb {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.bd-breadcrumb ol {
    padding: 0;
    font-size: 0.8rem;
    list-style: none;
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    margin: 0;
}

.bd-breadcrumb ol li a {
    color: #aaa;
    font-weight: 300;
    position: relative;
    display: inline-block;
    transition: all .2s ease;
}

.bd-breadcrumb ol li a:hover {
    color: var(--main-clr);
}

.bd-breadcrumb ol li:not(:last-child) a::after {
    color: #aaa !important;
    content: '/';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translate(100%, -50%);
}

.bd-breadcrumb ol li:last-child a {
    color: inherit;
}

.bd-breadcrumb ol li a {
    color: inherit;
}

.bd-breadcrumb ol li:not(:last-child) a::after {
    color: #aaa !important;
}

.bd-breadcrumb ol.v2 li:last-child a {
    color: #aaa !important;
}

@media screen and (max-width: 768px) {
    /* .bd-breadcrumb ol{ justify-content: flex-start;} */
}

/* --------------------------------------------- */
/* ----------------- HEADLINES ----------------- */
/* --------------------------------------------- */
.headline-template-1 {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 40px;
}

.handwrite {
    font-size: 38px;
    text-align: center;
    color: var(--main-clr);
    font-style: italic;
    font-family: "Bodoni Moda", serif;
}

.bd-link {
    text-decoration: underline;
    opacity: 0.7;
    color: #878787;
}

.bd-link:hover {
    opacity: 1;
}

.headline {
    font-size: 42px;
    font-weight: 300;
    color: #8f9397;
}

@media screen and (max-width: 992px) {
    .headline {
        font-size: 32px;
    }
}

.headline span {
    color: #000;
}

.headline-md {
    font-size: 32px;
    font-weight: 300;
}

.headline-v1 {
    font-size: 56px;
    color: #fff;
    font-weight: 300;
    max-width: 600px;
}

.sub-headline {
    font-size: 22px;
    font-weight: 300;
    color: #999;
}

.sub-headline.md {
    font-size: 20px;
}

.sub-headline.sm {
    font-size: 18px;
}

.sub-headline strong {
    color: #555;
}

.top-header {
    font-size: 18px;
    font-weight: 300;
    color: var(--main-clr);
    letter-spacing: 2px;
}

.text-xs {
    font-size: 14px;
}

.text-sm {
    font-size: 16px;
}

.text-md {
    font-size: 1.5rem;
}

.text-lg {
    font-size: 20px;
}

.text-xl {
    font-size: 24px;
}

.text-2xl {
    font-size: 28px;
}

.text-1 {
    font-weight: 300;
    color: inherit;
    letter-spacing: 1px;
}


.spacing-half {
    padding-top: 60px;
}

.spacing {
    padding-top: 100px;
}

.spacing-1 {
    padding-top: 160px;
}

.bg-main {
    background-color: rgb(243 243 243);
}

.dpy-col {
    padding: 60px 0;
}

.bg-img {
    position: relative;
}

.bg-img::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .35);
}

.bg-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.bg-img>div {
    position: relative;
    z-index: 2;
}


.text-main {
    color: var(--main-clr);
}

/* .text-dark{ color: #000;}
.text-light{ color: #fff;} */

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/* --------------------------------------------- */
/* --------------- BD TMEPLATES ---------------- */
/* --------------------------------------------- */
.bd-template-1 {
    background-color: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 30px -25px rgba(0, 0, 0, .1);
}

.bd-template-1.v2 {
    margin-top: 0;
}

.swiper-slide:has(.bd-template-2) {
    height: auto;
}

.bd-template-2 {
    height: 100%;
    gap: 30px;
    padding: 40px 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bd-template-2 .l {
    height: 100%;
}

.bd-template-2 .l h3 {
    margin-bottom: 15px;
}

.bd-template-2 .l p {
    margin: 0;
    max-width: 700px;
}


.bd-template-3 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bd-template-3 .img {
    width: 100%;
    aspect-ratio: 1.5;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.bd-template-3 .img::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 5;
    opacity: 0;
    transition: all .5s ease;
}

.bd-template-3:hover .img::before {
    opacity: 1;
}

.bd-template-3 .img img {
    position: relative;
    z-index: 2;
}

.bd-template-3 .img iframe {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
}

.bd-template-3 .img img,
.bd-template-3 .img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
}

.bd-template-3:hover .img img,
.bd-template-3:hover .img iframe {
    transform: scale(1.15);
}

.bd-template-3 .img>button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.bd-template-3 .detail strong {
    font-size: 18px;
    font-weight: 400;
}


.bd-template-4 {
    display: flex;
    gap: 15px;
    align-items: center;
    color: inherit;
    transition: all .2s ease;
}

.bd-template-4 .img {
    --size: 50px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    display: flex;
}

.bd-template-4 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-4 .detail {
    display: flex;
}

.bd-template-4 .detail strong {
    font-size: 12px;
    font-weight: 400;
    opacity: .75;
    transition: all .2s ease;
}

.bd-template-4:hover {
    color: var(--main-clr);
}

.bd-template-4:hover .detail strong {
    opacity: 1;
}

.bd-template-5 {
    position: relative;
    display: flex;
    flex-direction: column;
}

.bd-template-5 .img {
    aspect-ratio: 1;
    display: flex;
    position: relative;
}

.bd-template-5 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-5 .detail {
    color: #fff;
    justify-content: flex-end;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

.bd-template-5:hover .detail {
    background-color: rgba(0, 0, 0, .5);
}

.bd-template-5 .detail>strong {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
}

.bd-template-5 .detail>div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all .3s ease;
}

.bd-template-5:hover .detail>div {
    padding-bottom: 35px;
}

.bd-template-5 .detail>div span {
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
}

.bd-template-5 .detail>small {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    position: absolute;
    transform: translateY(100%);
    transition: all .3s ease;
}

.bd-template-5 .detail>small:hover {
    gap: 7px;
    padding-left: 5px;
}

.bd-template-5 .detail>small svg {
    height: 16px;
}

.bd-template-5:hover .detail>small {
    opacity: 1;
    transform: translateY(0);
}

.bd-template-6 {
    width: 70px;
    background-color: #eee;
    padding: 12px;
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
}

.bd-template-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-7 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bd-template-7 .detail p {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.bd-wrapper-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bd-wrapper-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
}

.bd-wrapper-3 {
    display: flex;
    gap: 10px;
}


.bd-select {
    --size: 30px;
    color: var(--main-clr);
    display: flex;
    position: relative;
    width: 100%;
}

.bd-select>button {
    color: #888;
    height: var(--size);
    font-size: 13px;
    border: 1px solid var(--main-clr);
    padding: 0;
    padding-left: 15px;
    gap: 10px;
    border-radius: calc(var(--size) / 2);
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.bd-select.active>button {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bd-select>button>span {
    white-space: nowrap;
}

.bd-select>button>div {
    color: #000;
    border: 1px solid currentColor;
    transform: translateX(1px);
    height: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-select>button>div svg {
    height: 18px;
    fill: currentColor;
}

.bd-select.active>button>div svg {
    transform: rotate(180deg);
}

.bd-select>div {
    padding: 0 15px 15px;
    position: absolute;
    opacity: 0;
    background-color: #fff;
    border: 1px solid var(--main-clr);
    z-index: 2;
    top: calc(100%);
    border-top: none;
    border-radius: 0 0 15px 15px;
    pointer-events: none;
    width: 100%;
    transition: all 0s ease;
}

.bd-select.active>div {
    opacity: 1;
    pointer-events: all;
}

.bd-select>div>div {
    border-top: 1px solid #ddd;
    padding-top: 5px;
}

.bd-select>div>div .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.bd-select>div>div .list::-webkit-scrollbar {
    width: 6px;
}

.bd-select>div>div .list::-webkit-scrollbar-thumb {
    background-color: var(--main-clr);
    border-radius: 10px;
}


.bd-select {
    --size: 30px;
    color: var(--main-clr);
    display: flex;
    position: relative;
    width: 100%;
}

.bd-select>a {
    color: #888;
    height: var(--size);
    font-size: 13px;
    border: 1px solid var(--main-clr);
    padding: 0;
    padding-left: 15px;
    gap: 10px;
    border-radius: calc(var(--size) / 2);
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.bd-select.active>a {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bd-select>a>span {
    white-space: nowrap;
}

.bd-select>a>div {
    color: #000;
    border: 1px solid currentColor;
    transform: translateX(1px);
    height: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-select>a>div svg {
    height: 18px;
    fill: currentColor;
}

.bd-select.active>a>div svg {
    transform: rotate(180deg);
}

.bd-select>div {
    padding: 0 15px 15px;
    position: absolute;
    opacity: 0;
    background-color: #fff;
    border: 1px solid var(--main-clr);
    z-index: 2;
    top: calc(100%);
    border-top: none;
    border-radius: 0 0 15px 15px;
    pointer-events: none;
    width: 100%;
    transition: all 0s ease;
}

.bd-select.active>div {
    opacity: 1;
    pointer-events: all;
}

.bd-select>div>div {
    border-top: 1px solid #ddd;
    padding-top: 5px;
}

.bd-select>div>div .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.bd-select>div>div .list::-webkit-scrollbar {
    width: 6px;
}

.bd-select>div>div .list::-webkit-scrollbar-thumb {
    background-color: var(--main-clr);
    border-radius: 10px;
}


.bd-check {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.bd-check input {
    --size: 16px;
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
    position: relative;
}

.bd-check input::before {
    font-size: 12px;
    content: 'âœ”';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: var(--size);
    height: var(--size);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    color: transparent;
    transition: all .2s ease;
}

.bd-check input:checked::before {
    background-color: var(--main-clr);
    color: #fff;
}

.bd-check span {
    font-size: 13px;
}


.bd-select ul {
    list-style: none;
    padding: 0;
    font-size: 13px;
}

.bd-select ul li a {
    padding: 3px 0;
    display: inline-block;
}

.bd-select>ul ul li {
    border-bottom: none;
}

.bd-list {
    --line-clr: #ddd;
}

.bd-list li {
    position: relative;
}

.bd-list li a {
    position: relative;
}

.bd-list li>a>button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    height: fit-content;
    display: flex;
    transition: all .3s ease;
}

.bd-list li.open>a>button {
    transform: translateY(-50%) rotate(180deg);
}

.bd-list li ul {
    padding-left: 12px;
}

.bd-list li ul ul {
    padding-left: 25px;
}

.bd-list li ul li:has(+ li)>ul {
    border-left: 1px solid var(--line-clr);
}

.bd-list li ul li {
    position: relative;
}

.bd-list li ul li a {
    padding-left: 20px;
    transition: all .2s ease;
}

.bd-list li ul li a:hover {
    padding-left: 25px;
}

.bd-list li ul li>a::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    border-left: 1px solid var(--line-clr);
    height: 100%;
}

.bd-list li ul li>a::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid var(--line-clr);
    height: 0;
    width: 10px;
    transition: all .2s ease;
}

.bd-list li ul li:hover>a::after {
    width: 15px;
}

.bd-list li ul li:nth-last-child(1)>a::before {
    height: 50%;
}


.slider-template-1 {
    position: relative;
}

.slider-template-1 .swiper-controller {
    position: absolute;
    right: 50px;
    top: 40px;
    gap: 10px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slider-template-1 .swiper-controller .swiper-counter {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

/* .slider-template-1 .swiper-controller .swiper-btn{ --size: 20px; width: var(--size); height: var(--size); border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: transparent; border: 1px solid var(--main-clr); color: var(--main-clr);} */
.slider-template-1 .swiper-controller .swiper-btn {
    --size: 20px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.slider-template-2 {
    position: relative;
    max-width: 450px;

}

.slider-template-2 .swiper-slide {
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
    max-height: 400px;
}

.slider-template-2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-template-2 .swiper-btn {
    --size: 30px;
    position: absolute;
    top: 50%;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.slider-template-2 .swiper-btn svg {
    height: 18px;
}

.slider-template-2 .swiper-btn.prev {
    transform: translate(-50%, -50%);
    left: 0;
}

.slider-template-2 .swiper-btn.next {
    transform: translate(50%, -50%);
    right: 0;
}


.thumb-slider .swiper-slide {
    border: 2px solid #eee;
    transition: all .2s ease;
    padding: 2px;
}

.thumb-slider .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--main-clr);
}

.thumb-slider .swiper-slide {
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .slider-template-3{ height: fit-content; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%; z-index: 5;} */
.slider-template-3 {
    height: fit-content;
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.slider-template-3 .swiper-wrapper {
    height: fit-content;
}

.slider-template-3 .swiper-wrapper .swiper-slide {
    height: fit-content;
    padding: 0 15px;
}

.slider-template-3 .swiper-wrapper .swiper-slide p {
    height: fit-content;
    text-align: center;
    font-size: 32px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: 100;
    color: #fff;
    text-transform: uppercase;
}


@media screen and (max-width: 768px) {
    .slider-template-3 .swiper-wrapper .swiper-slide p {
        font-size: 24px;
    }

    .slider-template-2 {
        max-width: 350px;
    }

    .slider-template-2 .swiper-slide {
        max-height: 300px;
    }
}


/* MODERN BUTTONS */
.single-btn {
    background: var(--gradient-primary);
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.single-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.single-btn:hover::before {
    left: 100%;
}

.single-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: white;
    text-decoration: none;
}

.single-btn svg {
    transition: var(--transition-base);
}

.single-btn:hover svg {
    transform: translateX(3px);
}

.bd-btn:not(.just-clr) {
    gap: 15px;
    padding: 5px 30px;
    height: fit-content;
    min-height: 45px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    width: fit-content;
}

.bd-btn {
    background-color: var(--bg);
    border: 1px solid var(--border, var(--bg));
    color: var(--clr);
    transition: all .3s ease;
}

.bd-btn:not(.just-clr) svg {
    height: 30px;
    margin-left: -15px;
}

.bd-btn.v2 {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 13px;
    min-height: 30px;
    padding: 0;
    padding-bottom: 2px;
    border-radius: 999px;
}

.bd-btn:hover {
    background-color: var(--hover-bg, var(--clr));
    color: var(--hover-clr, var(--bg));
    border-color: var(--hover-border, var(--bg));
}

.btn-full {
    width: 100% !important;
    padding: 0;
    justify-content: center;
}

.btn-main {
    --bg: var(--main-clr);
    color: var(--main-clr-txt);
}

.btn-main-outlined {
    --bg: transparent;
    color: var(--main-clr);
    --border: var(--main-clr);
    --hover-bg: var(--main-clr);
    --hover-clr: var(--main-clr-txt);
}

.btn-white {
    --bg: #fff;
    color: var(--main-clr);
}

/* .btn-white-outlined{ --bg: transparent; color: #fff; --border: #fff; --hover-bg: #fff; --hover-clr: var(--main-clr);} */
.btn-white-outlined {
    --bg: transparent;
    color: #fff;
    --border: #fff;
    --hover-bg: var(--main-clr);
    --hover-border: var(--main-clr);
    --hover-clr: #fff;
}

.btn-black {
    --bg: #000;
    color: #fff;
}

.btn-black-outlined {
    --bg: #fff;
    color: #000;
    --border: #000;
    --hover-bg: #000;
    --hover-clr: #fff;
}


.bottom-close {
    z-index: 20;
}


.modal {
    --bs-modal-border-radius: 0;
}

/* Bootstrap 5 CSS and icons included */
:root {
    /* --colorPrimaryNormal: #00b3bb;
    --colorPrimaryDark: #00979f;
    --colorPrimaryGlare: #00cdd7;
    --colorPrimaryHalf: #80d9dd;
    --colorPrimaryQuarter: #bfecee;
    --colorPrimaryEighth: #dff5f7;
    --colorPrimaryPale: #f3f5f7;
    --colorPrimarySeparator: #f3f5f7;
    --colorPrimaryOutline: #dff5f7;
    --colorButtonNormal: #00b3bb;
    --colorButtonHover: #00cdd7;
    --colorLinkNormal: #00979f;
    --colorLinkHover: #00cdd7; */

    /* --colorPrimaryNormal: #bb7300;
    --colorPrimaryDark: #9f6f00;
    --colorPrimaryGlare: #d78800;
    --colorPrimaryHalf: #ddb880;
    --colorPrimaryQuarter: #eee1bf;
    --colorPrimaryEighth: #f7f0df;
    --colorPrimaryPale: #f7f6f3;
    --colorPrimarySeparator: #f7f6f3;
    --colorPrimaryOutline: #f7f0df;
    --colorButtonNormal: #bb7900;
    --colorButtonHover: #d78f00;
    --colorLinkNormal: #9f6f00;
    --colorLinkHover: #d7a100; */

    --colorPrimaryNormal: #b4985a;
    /* Ana renk - altÄ±n bronz */
    --colorPrimaryDark: #967a45;
    /* Daha koyu tonu */
    --colorPrimaryGlare: #d6b875;
    /* Parlak, Ä±ÅŸÄ±klÄ± tonu */
    --colorPrimaryHalf: #d9c29d;
    /* %50 doygunlukta tonu */
    --colorPrimaryQuarter: #ecdfc2;
    /* Daha yumuÅŸak, aÃ§Ä±k tonu */
    --colorPrimaryEighth: #f7f1e2;
    /* Ã‡ok hafif tonu */
    --colorPrimaryPale: #f9f7f4;
    /* Soluk, arka plan rengi */
    --colorPrimarySeparator: #f9f7f4;
    /* AyÄ±rÄ±cÄ± Ã§izgiler iÃ§in */
    --colorPrimaryOutline: #f7f1e2;
    /* Border veya outline iÃ§in */

    --colorButtonNormal: #b4985a;
    /* Buton rengi */
    --colorButtonHover: #d6b875;
    /* Hover'da daha parlak tonu */
    --colorLinkNormal: #967a45;
    /* Link rengi */
    --colorLinkHover: #d6b875;
}

.upload_dropZone {
    color: #0f3c4b;
    background-color: var(--colorPrimaryPale, #c8dadf);
    outline: 2px dashed var(--colorPrimaryHalf, #c1ddef);
    outline-offset: -12px;
    transition:
        outline-offset 0.2s ease-out,
        outline-color 0.3s ease-in-out,
        background-color 0.2s ease-out;
}

.upload_dropZone.highlight {
    outline-offset: -4px;
    outline-color: var(--colorPrimaryNormal, #0576bd);
    background-color: var(--colorPrimaryEighth, #c8dadf);
}

.upload_svg {
    fill: var(--colorPrimaryNormal, #0576bd);
}

.btn-upload {
    cursor: pointer;
    margin: 0 auto;
}

/* .btn-upload {
    color: #fff;
    background-color: var(--colorPrimaryNormal);
} */
/* .btn-upload:hover,
.btn-upload:focus {
    color: #fff;
    background-color: var(--colorPrimaryGlare);
} */
.upload_img {
    width: calc(33.333% - (2rem / 3));
    object-fit: contain;
}


@media (min-width: 1200px) {
    .container.md {
        max-width: 950px;
    }
}

@media (min-width: 1400px) {
    .container.md {
        max-width: 1200px;
    }
}


@media screen and (max-width: 1280px) {
    .text-xl {
        font-size: 20px;
    }

    .text-xs {
        font-size: 13px;
    }

    .handwrite {
        font-size: 32px;
    }

    .headline-v1 {
        font-size: 44px;
    }
}

@media screen and (max-width: 992px) {
    header>.b>div>.c {
        display: none;
    }

    header .header-menu>.b>div {
        flex-direction: column;
        gap: 60px;
        max-width: 900px;
    }

    header .header-menu>.b>div .r {
        max-width: unset;
    }

    .menu-template-1>ul>li>ul {
        display: none;
        width: 100%;
        position: static;
        left: unset;
        top: unset;
        padding-left: 20px;
        padding-top: 15px;
        opacity: 1;
        pointer-events: all;
        transform: unset;
    }

    .menu-template-1>ul {
        max-width: unset;
        border: none;
    }

    .menu-template-1>ul>li>a>button {
        opacity: 1;
        transform: translate(0, -50%) rotate(90deg);
        transition: all .2s ease;
    }

    .menu-template-1>ul>li>a.active+ul {
        display: flex;
    }

    .menu-template-1>ul>li>a.active>button {
        transform: translate(0, -50%) rotate(180deg);
    }


    .samples {
        font-size: 15px;
    }

    .samples>.icon svg {
        height: 30px;
    }

    .bd-wrapper-2 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width: 768px) {
    .headline-md {
        font-size: 26px;
    }

    .sub-headline {
        font-size: 20px;
    }

    .bd-template-2 {
        flex-direction: column;
        padding: 40px 25px 30px;
    }

    .bd-template-2 .r button {
        white-space: unset !important;
    }

    .slider-template-1 .swiper-controller {
        right: 20px;
        top: 20px;
    }

    .bd-btn-2.lg {
        font-size: 16px;
    }

    .bd-btn-2.lg svg {
        height: 28px;
    }


    footer>div .b {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .bd-entry {
        min-height: 250px;
    }

    .bd-entry>div h1 {
        font-size: 36px;
    }

    /* OTHERS */
    .text-xl {
        font-size: 22px;
    }

    .text-xs {
        font-size: 15px;
    }

    .bd-btn-1 {
        font-size: 13px;
    }


    .bd-wrapper-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bd-template-5 .detail>strong {
        font-size: 12px;
    }
}


@media screen and (max-width: 576px) {
    .bd-wrapper-2 {
        display: flex;
        flex-direction: column;
    }

}


@media screen and (min-width: 768px) {
    .show-md {
        display: none;
    }
}


.form-control {
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--main-clr);
    box-shadow: 0 0 0 3px rgba(180, 152, 90, 0.3);
}


.ticker-wrapper { width: 100%; height: 50px; overflow: hidden; position: relative; color: var(--main-clr); font-weight: 500; background: rgba(180, 152, 90, 0.1); border-top: 2px solid rgba(180, 152, 90, 0.2); border-bottom: 2px solid rgba(180, 152, 90, 0.2); display: flex; align-items: center; font-family: sans-serif;}
.ticker { display: flex; white-space: nowrap; will-change: transform; animation: ticker-scroll linear infinite;}
.ticker-item { margin-right: 100px; font-size: 18px; color: var(--main-clr); flex: 0 0 auto;}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


.page-detail {
    margin-bottom: 0;
    margin-top: 156px;
    justify-content: center;
    background: #7a7a7a1f;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 3rem;
}

h2 { font-size:1.8rem }

@media screen and (max-width: 768px) {
.bd-entry.video {
    height: 100dvh
}
.slider-template-3 .swiper-wrapper { display:none }
}



.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--main-clr);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--main-clr);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--main-clr);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.0rem rgba(0, 0, 0, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--main-clr);
    --bs-pagination-active-border-color: var(--main-clr);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

/* ========================================= */
/* MODERN UI/UX ENHANCEMENTS */
/* ========================================= */

/* Modern Typography */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Modern Badge */
.badge {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Modern Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-600); /* Fallback */
}

/* Modern Glass Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Modern Hover Effects */
.hover-lift {
    transition: var(--transition-slow);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

/* Modern Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Modern Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-500);
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out;
}

/* Modern Container Improvements */
.container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
}

/* Modern Spacing Utilities */
.mb-5 { margin-bottom: var(--space-12) !important; }
.py-5 { padding-top: var(--space-12) !important; padding-bottom: var(--space-12) !important; }
.px-4 { padding-left: var(--space-4) !important; padding-right: var(--space-4) !important; }
.py-2 { padding-top: var(--space-2) !important; padding-bottom: var(--space-2) !important; }

/* Modern Text Utilities */
.text-white-50 { color: rgba(255, 255, 255, 0.75) !important; }
.text-muted { color: var(--neutral-600) !important; }

/* Modern Border Radius */
.rounded-pill { border-radius: var(--radius-full) !important; }

/* Modern Card Enhancements */
.card {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

/* Modern Form Controls */
.form-control {
    border-radius: var(--radius-lg);
    border: 2px solid var(--neutral-200);
    padding: var(--space-3) var(--space-4);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(180, 152, 90, 0.1);
    outline: none;
}

/* Modern Button Variations */
.btn-modern {
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.025em;
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.btn-modern:hover {
    transform: translateY(-2px);
}

.btn-primary-modern {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary-modern:hover {
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-modern {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--primary-300);
}

.btn-outline-modern:hover {
    background: var(--primary-600);
    color: white;
    border-color: var(--primary-600);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .feature-card {
        height: 320px;
    }
}