/* GENEL */
:root {
    --bs-btn-color: #ff7f05;
}

body {
    font-family: "Red Hat Display", sans-serif;
    color: #272727;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: currentColor;
}

  /* Dashboard Özel Stilleri */
    .dashboard-stat-card {
        background: #fff;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        height: 100%;
        border: 1px solid #eee;
        transition: transform 0.3s ease;
    }
    .dashboard-stat-card:hover {
        transform: translateY(-5px);
        border-color: #ff8e01;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 142, 1, 0.1);
        color: #ff8e01;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    .stat-value {
        font-size: 2rem;
        font-weight: 800;
        color: #272727;
        line-height: 1;
        margin-bottom: 0.5rem;
    }
    .stat-label {
        color: #666;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }
    .welcome-box {
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
        color: #fff;
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2rem;
        position: relative;
        overflow: hidden;
    }
    .welcome-box::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 100%;
        background: #ff8e01;
        opacity: 0.1;
        transform: skewX(-20deg) translateX(50px);
    }

/* Product Page Styles */
.product-detail-wrapper {
    padding: 30px 0;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.mb--4 {
    margin-bottom: -1.5rem;
}

.product-main-slider {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.product-main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-slider .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
}

.product-main-slider .swiper-slide img:focus-visible {
    outline: none;
}

.product-thumb-slider {
    margin-top: 15px;
}

header .navbar .relative.px-4 { padding: 0 !important; }

.product-thumb-slider .swiper-slide {
    width: 25%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    background: #fff;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.product-thumb-slider .swiper-wrapper {
    gap: 1rem;
}

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

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

.product-main-image {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-info-column .breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.product-info-column .product-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-info-column .price-wrapper {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.product-info-column .price-wrapper span {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.product-meta {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 30px;
}

.product-meta-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 15px;
}

.product-meta-item strong {
    width: 120px;
    color: #333;
}

.variation-select {
    margin-bottom: 30px;
}

.variation-select label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.variation-select select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s;
}

.variation-select select:focus {
    border-color: var(--primary-color);
}

.quantity-add-to-cart {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.quantity-input button {
    background: #f8f8f8;
    border: none;
    width: 40px;
    height: 50px;
    font-size: 20px;
    transition: background 0.3s;
}

.quantity-input button:hover {
    background: #eee;
}

.quantity-input input {
    width: 60px;
    height: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background: #fff;
    outline: none;
}

.product-tabs-wrapper {
    margin-top: 60px;
}

.product-tabs-nav {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.product-tab-link {
    padding-bottom: 15px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.product-tab-link.active {
    color: var(--primary-color);
}

.product-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.tab-content-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

.mask {
    position: fixed;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 3;
}

.pl-0 {
    padding-left: 0 !important;
}

.bg-grey {
    background-color: #f5f5f5;
}

input::-webkit-search-cancel-button {
    display: none;
    outline: none;
}

input:focus-visible {
    outline: none;
}

input:focus {
    outline: none;
}

input:focus {
    box-shadow: none;
}

.contact-actions .phone-float {
    z-index: 9999;
    background: #2E55AF;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
    width: 56px;
    height: 56px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    fill: #fff;
}

.contact-actions .phone-float span {
    display: none;
}

.contact-actions .phone-float svg {
    width: 32px;
}

.contact-actions .whatsapp-float {
    position: fixed;
    right: 90px;
    bottom: 20px;
    z-index: 9999;
    background: #25d366;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
    width: 56px;
    height: 56px;
}

.contact-actions .whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    display: block;
}

.contact-actions .whatsapp-float span {
    display: none;
    color: #fff;
    font-weight: 500;
    margin-left: 10px;
    font-size: 16px;
}

.contact-actions .whatsapp-ribbon {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #d61617;
    color: #fff;
    font-size: 12px !important;
    margin-left: 0 !important;
    font-weight: bold;
    border-radius: 12px;
    padding: 2px 7px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: none;
    animation: fadeInRibbon 0.5s;
}

.form-control:focus {
    border-color: transparent;
    border: 0;
    box-shadow: none;
}

.py-set {
    padding: 4rem 0;
}

.primary-button {
    white-space: nowrap;
    color: #fff;
    background-color: #ff7f02;
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-block;
    border: 0;
}

.primary-button img {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-right: 7px;
    margin-top: -4px;
}

.primary-button:hover {
    transform: scale(1.04);
    transition: all ease .3s;
    color: #fff;
    background-color: #e67002;
}

section {
    width: 100%;
    overflow: hidden;
}

/* GENEL END */
/* HEADER */
.header-space {
    height: 90px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

header.set-header {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

header nav {
    padding: 0 !important;
    height: 90px;
    transition: all 0.3s ease;
}

header.set-header nav {
    height: 70px;
}

/* Logo */
header nav .brand-logo {
    display: flex;
    align-items: center;
    margin-right: 3rem;
    z-index: 10;
}

header nav .brand-logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

header.set-header nav .brand-logo img {
    height: 35px;
}

/* Navbar Items */
header nav .navbar-nav {
    gap: 2rem;
}

header nav .navbar-nav>li>.nav-link {
    color: #1a1a1a !important;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 25px 0 !important;
    position: relative;
    transition: color 0.3s ease;
}

header nav .navbar-nav>li>.nav-link.active {
    color: #ff8e01 !important;
}

header nav .navbar-nav>li>.nav-link.active::after {
    width: 100%;
}

/* Dropdowns */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: .5rem .25rem;
    margin-top: 0;
    background: #fff;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    font-size: 14px;
    color: #555;
    padding: 8px 15px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.dropdown-item:hover {
    color: #ff8e01;
    background-color: #f9f9f9;
    transform: translateX(5px);
}

/* Header Right Actions */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

/* Mobile Toggle */
header .sidenav-toogle {
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    display: none;
}

/* Sidebar (Mobile) */
header .side-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    padding-bottom: 2rem;
}

header .side-nav.shown {
    left: 0;
}

header .side-nav>ul>li {
    border-bottom: 1px solid #f5f5f5;
}

header .side-nav>ul>li a {
    display: block;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* HEADER END */
/* HERO */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-section .swiper-slide {
    position: relative;
}

.slide-img-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide-img-wrapper .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 142, 1, 0.95) 0%, rgba(255, 142, 1, 0.8) 40%, rgba(255, 142, 1, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: #d32f2f;
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-content .text-box {
    max-width: 650px;
    padding: 0;
}

.hero-content .text-box .slide-title {
    color: #1a1a1a;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content .text-box .slide-title .highlight-text {
    position: relative;
    display: inline-block;
    font-weight: 900;
}

.hero-content .text-box .slide-title .highlight-text::after {
    display: none;
}

.hero-content .text-box .slide-text {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 500px;
}

.hero-content .text-box .hero-cta-button {
    background-color: #1a1a1a;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #1a1a1a;
}

.hero-content .text-box .hero-cta-button:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-swiper-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-swiper-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-swiper-next::after {
    font-size: 20px;
    font-weight: bold;
}

.hero-swiper-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-swiper-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-swiper-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* HERO END */
/* PAGE HERO */
.page-hero {
    height: 350px;
    background-image: url('../images/page-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero .desc {
    font-size: 18px;
    max-width: 600px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* ABOUT US SECTION */
.about-us {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}


.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff8e01;
    display: inline-block;
}

.sidebar-nav .nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav .nav-item {
    display: block;
    padding: 12px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #444;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-nav .nav-item:hover {
    background-color: #fff;
    border-color: #ff8e01;
    color: #ff8e01;
    transform: translateX(5px);
}

.sidebar-nav .nav-item.active {
    background-color: #ff8e01;
    color: #fff;
    border-color: #ff8e01;
    box-shadow: 0 4px 12px rgba(255, 142, 1, 0.2);
}

.about-main-content .content-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
}

.btn-outline-brand {
    color: #ff8e01;
    border-color: #ff8e01;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-brand:hover {
    background-color: #ff8e01;
    color: #fff;
    border-color: #ff8e01;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 142, 1, 0.2);
}

.btn-outline-brand.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
}

.about-main-content .text-primary {
    color: #ff8e01 !important;
}

.about-main-content .text-primary svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
}

.about-main-content .content-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlight-quote {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    border-left: 5px solid #ff8e01;
}

.highlight-quote h3 {
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}


@media (max-width: 991px) {
    .sidebar-nav-wrapper {
        position: static;
        margin-bottom: 40px;
    }
}

/* SERVICES SLIDER */
.services-slider-section {
    background-color: #faf8f5;
}

.services-slider-section .about-content {
    padding-right: 2rem;
}

.services-slider-section .about-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #ff8e01;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-slider-section .about-title {
    font-size: 36px;
    font-weight: 700;
    color: #272727;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-slider-section .about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.services-slider-section .about-content p strong {
    color: #272727;
    font-weight: 500;
}

.services-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.services-swiper .swiper-wrapper {
    align-items: stretch;
}

.services-swiper .swiper-slide {
    height: auto;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.service-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.service-card-button {
    display: inline-block;
    padding: 6px 18px;
    border: 1.5px solid #ff8e01;
    border-radius: 18px;
    color: #ff8e01;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
}

.service-card-button:hover {
    background-color: #ff8e01;
    color: #fff;
    border-color: #ff8e01;
}

.services-next {
    width: 38px;
    height: 38px;
    background-color: #fff;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.services-next:hover {
    background-color: #ff8e01;
    border-color: #ff8e01;
    color: #fff;
    box-shadow: 0 4px 10px rgba(67, 147, 74, 0.25);
}

.services-prev {
    left: 0;
}

.services-next {
    right: 0;
}

.services-next::after {
    font-size: 16px;
    font-weight: bold;
}

/* SERVICES SLIDER END */
/* Page Banner - Alt Sayfa Hero */
.page-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.banner-img::after {
    content: '';
    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.6) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    height: calc(100% - 50px);
    z-index: 2;
    display: flex;
    align-items: center;
}

.banner-content .text-box {
    color: #fff;
}

.banner-content .text-box h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner-content .text-box .text {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.breadcrumb-wrapper {
    position: relative;
    z-index: 4;
    height: 50px;
    background: #00000038;
    display: flex;
    align-items: center;
    border-top: 1px solid #dddddd73;
    border-bottom: 1px solid #dddddd73;
    overflow: hidden;
}

.breadcrumb-wrapper::after {
    content: "";
}

.breadcrumb-wrapper .container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 15px;
}

.breadcrumb-wrapper .container::-webkit-scrollbar {
    display: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: max-content;
    width: max-content;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
    flex-shrink: 0;
}

.breadcrumb li a {
    color: #222;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.breadcrumb li a:hover {
    opacity: 0.7;
}

.breadcrumb li svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    flex-shrink: 0;
}

.breadcrumb li:last-child {
    opacity: 1;
    font-weight: 500;
    white-space: nowrap;
}

/* CONTENT */
/* Page Title Styles - Genel Başlık Stilleri */
.page-title {
    margin-bottom: 4rem;
    text-align: left;
    position: relative;
}

.page-title .sup-title {
    font-size: 14px;
    font-weight: 500;
    color: #ff8e01;
    display: inline-block;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    background: none;
}

.page-title .title {
    font-size: 36px;
    font-weight: 700;
    color: #272727;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.page-title .title-divider {
    display: none;
}

.page-title.text-center {
    text-align: center;
}

.page-title.text-center .sup-title {
    margin-left: auto;
    margin-right: auto;
}

/* About Us Section */
.about-us {
    background-color: #fff;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-content .highlight-text {
    font-size: 18px;
    color: #272727;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #ff8e01;
    border-radius: 5px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-list li {
    font-size: 16px;
    color: #272727;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.service-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background-color: #ff8e01;
    border-radius: 2px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-info {
    padding: 2rem 0;
}

.about-info .info-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-info .info-title {
    font-size: 28px;
    font-weight: 700;
    color: #272727;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #ff8e01;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    fill: #fff;
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #272727;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* CTA Section */
.cta {
    position: relative;
    background-image: url('../images/cta-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Commitment Bar */
.cta-commitment-bar {
    background-color: #ff7f02;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.commitment-text h2 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.cta-quote-button {
    background-color: #ff8e01;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-quote-button:hover {
    background-color: #3a7e40;
    color: #fff;
    transform: translateY(-2px);
}

/* Process Section */
.cta-process-section {
    position: relative;
    background-image: url('../images/cta-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.cta-process-section .container {
    position: relative;
    z-index: 3;
}

/* Floating Bubbles */
.bubbles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    opacity: 0;
    animation: floatUp linear infinite;
}

.bubble-1 {
    left: 5%;
    width: 40px;
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble-2 {
    left: 15%;
    width: 60px;
    animation-duration: 15s;
    animation-delay: 2s;
}

.bubble-3 {
    left: 25%;
    width: 35px;
    animation-duration: 10s;
    animation-delay: 4s;
}

.bubble-4 {
    left: 40%;
    width: 50px;
    animation-duration: 14s;
    animation-delay: 1s;
}

.bubble-5 {
    left: 55%;
    width: 45px;
    animation-duration: 13s;
    animation-delay: 3s;
}

.bubble-6 {
    left: 70%;
    width: 55px;
    animation-duration: 16s;
    animation-delay: 5s;
}

.bubble-7 {
    left: 85%;
    width: 40px;
    animation-duration: 11s;
    animation-delay: 2.5s;
}

.bubble-8 {
    left: 95%;
    width: 48px;
    animation-duration: 14s;
    animation-delay: 4.5s;
}

@keyframes floatUp {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }

    10% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        transform: translateX(20px) rotate(180deg);
    }

    90% {
        opacity: 0.6;
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-20px) rotate(360deg);
    }
}

.process-main-title {
    font-size: 29px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.process-steps {
    position: relative;
}

.process-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(67, 147, 74, 0.3);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff8e01 0%, #3a7e40 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid rgba(67, 147, 74, 0.3);
}

.process-icon svg {
    fill: #fff;
    width: 40px;
    height: 40px;
    overflow: visible;
}

.process-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.process-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    z-index: 3;
}

.process-arrow svg {
    fill: #ff8e01;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.process-steps .col-lg-4:last-child .process-arrow {
    display: none;
}

.process-video-button {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.process-video-button:hover {
    background-color: #fff;
    color: #ff7f02;
    transform: translateY(-2px);
}

.process-video-button svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

/* Category Product Cards */
.category .why-card {
    display: block;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e8e8e8;
    height: 100%;
}

.category .why-card:hover {
    transform: translateY(-8px);
    border-color: #ff8e01;
}

.category .why-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.category .why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category .why-card:hover .why-card-image img {
    transform: scale(1.05);
}

.category .why-card-content {
    padding: 1.5rem;
}

.category .why-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #272727;
    margin-bottom: .25rem;
    transition: all 0.3s ease;
}

.category .why-card:hover .why-card-title {
    color: #ff8e01;
}

.category .why-card-divider {
    width: 40px;
    height: 2px;
    background-color: #ff8e01;
    margin-bottom: .5rem;
}

.category .why-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

/* Why Us Section */
.why-us {
    background-color: #fafafa;
}

.page-title .title-subtitle {
    font-size: 17px;
    color: #666;
    margin-top: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-feature-box {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    margin-bottom: 3rem;
}

.why-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: .8rem;
}

.why-feature-icon svg {
    width: 14px;
    height: 14px;
}

.why-feature-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: .8rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.why-feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.why-satisfaction-card {
    background-color: transparent;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.satisfaction-image {
    text-align: center;
    opacity: 0.9;
}

.satisfaction-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(67, 147, 74, 0.12));
}

/* User Reviews Section */
.user-reviews {
    background-image: url('../images/comment-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.user-reviews::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(120deg, #FFFFFF00 30%, #252b3d 60%);
    z-index: 1;
}

.user-reviews .container {
    position: relative;
    z-index: 2;
}

.reviews-wrapper {
    position: relative;
    padding: 3rem;
    max-width: 550px;
    margin: 0 auto;
}

.reviews-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.reviews-swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-swiper .swiper-slide {
    height: auto;
    width: 100%;
}

.review-card {
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.review-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-text {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-style: italic;
    flex-grow: 1;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8e01 0%, #ff7f02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-avatar span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.review-author-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-author-details strong {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: block;
}

.review-author-details span {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

.reviews-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.reviews-next:hover {
    color: #ff8e01;
    transform: translateY(-50%) scale(1.1);
}

.reviews-prev {
    left: -10px;
}

.reviews-next {
    right: -10px;
}

.reviews-next svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.reviews-next::after {
    display: none;
}

/* Main References Section */
.main-references {
    background-color: #f8f9fa;
}

.references-swiper {
    padding: 2rem 0;
}

.reference-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.references-pagination {
    position: relative;
    margin-top: 2rem;
}

.references-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ff8e01;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.references-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #ff8e01;
}

/* Sidebar Menu */
.sidebar-menu {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #272727;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.sidebar-arrow {
    display: none;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #555;
    font-size: 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background-color: #f8f9fa;
    color: #ff8e01;
    border-left-color: #ff8e01;
    padding-left: 1.25rem;
}

/*General CSS*/
.zed-form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.zed-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #12314e, #e74c3c);
}

.zed-form-title {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.zed-form-group {
    position: relative;
}

.zed-form-label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.zed-form-input,
.zed-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.zed-form-input:focus,
.zed-form-textarea:focus {
    outline: none;
    border-color: #6CA5A3;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.zed-form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.zed-form-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.zed-form-error.zed-show-error {
    opacity: 1;
    transform: translateY(0);
}

.zed-form-input.zed-error,
.zed-form-textarea.zed-error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.zed-form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6CA5A3 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zed-form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.zed-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.zed-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.zed-toast.zed-success {
    background-color: #27ae60;
}

.zed-toast.zed-error {
    background-color: #e74c3c;
}

.zed-toast.zed-show {
    transform: translateX(0);
}

.zed-contact-info {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.zed-map-container {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.primary-button {
    display: flex;
    gap: .25rem;
    align-items: center;
    justify-content: center;
    padding: .5rem 1rem;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.zed-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.zed-map-container iframe:hover {
    filter: grayscale(0);
}

.zed-info-content {
    padding: 40px;
    position: relative;
}

.zed-info-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #12314e, #e74c3c);
}

.zed-info-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zed-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.zed-info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.zed-info-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    fill: #ff8e01;
}

.zed-info-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.zed-info-details p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #25d366;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
    width: 56px;
    height: 56px;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    display: block;
}

.whatsapp-float span {
    display: none;
    color: #fff;
    font-weight: 500;
    margin-left: 10px;
    font-size: 16px;
}

.whatsapp-ribbon {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #d61617;
    color: #fff;
    font-size: 12px !important;
    margin-left: 0 !important;
    font-weight: bold;
    border-radius: 12px;
    padding: 2px 7px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: none;
    animation: fadeInRibbon 0.5s;
}

@keyframes fadeInRibbon {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp-float.shake {
    animation: shakeWhatsapp 0.5s;
}

@keyframes shakeWhatsapp {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-4px);
    }

    40% {
        transform: translateX(4px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}

/* CONTENT END */
/* FOOTER */
footer {
    position: relative;
    z-index: 3;
    background-size: cover;
    background-color: #002d3b;
}

footer .footer-wrapper {
    padding: 50px 40px;
}

footer .header-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

footer .header-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .header-social li a:hover {
    background: #ff8e01;
    border-color: #ff8e01;
    transform: translateY(-3px);
}

footer .header-social li a svg {
    fill: #fff;
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

footer .header-social li a:hover svg {
    transform: scale(1.05);
}

footer .footer-text {
    font-size: 14px;
    color: #fff;
    opacity: .6;
    margin-top: 1rem;
    font-weight: 300;
}

footer h5 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    position: relative;
}

footer h5::after {
    content: "";
    height: 1px;
    width: 65%;
    background-color: #fff;
    display: block;
    margin-top: 0.5rem;
    opacity: .6;
}

footer .footer-top {
    padding: 50px 0;
    border-bottom: 1px solid #4b4b4b;
}

footer .footer-call {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    color: #222;
}

footer .footer-call h3 {
    font-weight: 300;
    margin-bottom: 0;
    font-size: 1.25rem;
}

footer .brand-logo {
    margin-bottom: 1.5rem;
    display: block;
}

footer .brand-logo img {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

footer .footer-thin {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    color: #BAB7B7;
    display: block;
    margin-top: 20px;
}

footer .footer-thin-social {
    margin-top: 40px;
    margin-bottom: 5px;
    color: #222;
}

footer .footer-social {
    padding-inline-start: 0px;
    margin-block-start: 1rem;
    margin-block-end: 2rem;
    display: flex;
}

footer .footer-social li {
    margin-right: 10px;
    text-align: center;
    line-height: 25px;
}

footer .footer-social li i {
    color: #222;
    font-size: 18px;
}

footer .footer-link-list {
    margin-bottom: 25px;
}

footer .footer-link-list li a {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

footer .footer-link-list li svg {
    fill: #7C7C7C;
    min-width: 20px;
    margin-top: 3px;
}

footer .footer-link-list li a {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    cursor: pointer !important;
}

footer .footer-link-list li a:hover {
    opacity: 1;
    transition: all ease .3s;
}

footer .footer-link-list li {
    opacity: .5;
    transition: all ease .3s;
}

footer .footer-link-list li:hover {
    opacity: 1;
    transition: all ease .3s;
}

footer .footer-bottom-image {
    margin: 50px 0 -50px;
    width: 100%;
    overflow: hidden;
}

footer .footer-bottom-image img {
    width: 100%;
}

footer .footer-copyright {
    color: #8e8e8e;
    padding: 15px 10px;
    font-size: 13px;
    height: 50px;
    font-weight: 400;
}

footer .footer-copyright .right a {
    margin-right: 16px;
    font-weight: 300;
    font-size: 13px;
    color: #8e8e8e;
}

footer .footer-copyright .web-tasarim {
    white-space: nowrap;
    margin-top: 0;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

footer .footer-copyright .web-tasarim:hover {
    opacity: 1;
}

footer .footer-copyrights {
    border-top: 1px solid #BCBCBC;
    padding-top: 20px;
    padding-bottom: 20px;
}

footer .footer-copyrights ul {
    margin: 0;
    padding: 0;
    float: right;
}

footer .footer-copyrights ul li {
    float: left;
}

footer .footer-copyrights ul li a {
    color: #222 !important;
    font-weight: 100;
    cursor: pointer;
}

footer .footer-copyrights ul li a:hover {
    color: #ff8e01 !important;
}

footer .copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .zedtech-logo {
    height: 20px;
    opacity: .5;
    transition: all ease .3s;
}

footer .zedtech-logo:hover {
    opacity: 1;
}

footer .footer-input {
    width: 80%;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ff8e01;
}

/* FOOTER END */
/* MODAL */
.modal .modal-body {
    height: 500px;
    overflow-y: scroll;
}

.modal .modal-body p {
    font-size: 15px;
}

.modal .modal-body ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.modal .modal-body ul li {
    font-size: 15px;
    font-weight: 300;
    list-style: circle;
}

.modal .modal-body ol li {
    font-size: 15px;
    font-weight: 300;
}

.modal .modal-body a {
    color: #ff8e01;
}

.modal .modal-body .teklif-al {
    background: #ff8e01;
    color: #fff;
    float: right;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.modal .modal-body .teklif-al i {
    margin-right: 7px;
}

.modal-header .btn-close:focus {
    outline: none;
    box-shadow: none;
}

/* MODAL END */
/* RESPONSIVE */
@media only screen and (min-width: 992px) {
    .container {
        width: 90%;
    }

    .navbar-expand-lg .navbar-collapse .navbar-nav {
        align-items: center;
        gap: 1rem;
    }

    header.set-header .navbar-expand-lg {
        height: 70px;
        transition: all ease 200ms;
    }

    .header-link {
        position: relative;
        z-index: 3;
    }

    .product-swiper .swiper-pagination {
        display: none;
    }

    .hero-content .text-box .slide-title {
        font-size: 64px;
    }

    .hero-content .text-box .slide-text {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }

    .hero-content .text-box .slide-title {
        font-size: 72px;
    }

    .slide-img-wrapper {
        height: 500px;
    }
}

@media only screen and (max-width: 1200px) {
    .navbar-expand-lg .navbar-collapse .navbar-nav {
        gap: .5rem;
    }

    header nav .brand-logo {
        padding-right: 1.24rem;
        margin-right: 1.24rem;
    }

    header .header-link {
        padding-left: 1.24rem;
        margin-left: 1.24rem;
    }
}

@media only screen and (max-width: 992px) {
    .table-hide {
        display: none;
    }

    header .sidenav-toogle {
        transition: all ease 200ms;
        display: block;
        font-size: 23px;
        z-index: 3;
        position: absolute;
        left: 20px;
    }

    header nav .brand-logo {
        margin-left: 50px;
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
    }

    header .header-top {
        display: none;
    }

    header .header-right-actions {
        display: none;
    }

    .container {
        max-width: 90%;
    }

    header .navbar-expand-lg>.container {
        justify-content: center;
    }

    .py-set {
        padding: 3rem 0;
    }

    footer .brand-logo {
        text-align: center;
    }

    footer .header-social {
        justify-content: center;
    }

    footer .footer-text {
        text-align: center;
    }

    .page-title .title {
        font-size: 36px;
    }

    .about-info .info-title {
        font-size: 30px;
    }

    .about-content .highlight-text {
        font-size: 16px;
        padding: 1.2rem;
    }

    .services-slider-section .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .services-slider-section .about-title {
        font-size: 28px;
    }

    .services-slider-wrapper {
        padding: 0 45px;
    }

    .service-card-image {
        height: 130px;
    }

    .service-card-content {
        padding: 0.85rem;
    }

    .service-card-title {
        font-size: 14px;
    }

    .service-card-button {
        padding: 5px 15px;
        font-size: 11px;
    }

    .services-next {
        width: 35px;
        height: 35px;
    }

    .services-next::after {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    footer .container {
        max-width: 95%;
    }

    header .header-top {
        display: none;
    }

    header .header-7-24-link {
        display: none;
    }

    header.set-header nav .brand-logo img {
        height: 35px;
        transition: all ease 200ms;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .t-quote {
        font-size: 17px;
    }

    .t-card {
        width: 90%;
    }

    .slider-content .title {
        font-size: 2.25rem;
    }

    .slider-content .text {
        font-size: 1rem;
    }

    .content-header .title {
        font-size: 1.5rem;
    }

    .content-header .text {
        font-size: 1rem;
    }

    .custom-form-container {
        margin-top: 0;
    }

    .zed-contact-page {
        padding: 20px 10px;
    }

    .zed-info-content {
        padding: 30px 20px;
    }

    .zed-page-title {
        font-size: 28px;
    }

    .zed-page-subtitle {
        font-size: 16px;
    }

    .zed-map-container {
        height: 250px;
    }

    .bg-pattern {
        width: 100px;
    }

    .slide-img-wrapper {
        height: 500px;
    }

    .hero-content .text-box {
        padding: 0 1rem;
    }

    .hero-content .text-box .slide-title {
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .hero-content .text-box .slide-title .highlight-text::after {
        height: 3px;
        bottom: 5px;
    }

    .hero-content .text-box .slide-text {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .hero-content .text-box .hero-cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .services-slider-section .about-content {
        margin-bottom: 2rem;
    }

    .services-slider-section .about-title {
        font-size: 26px;
    }

    .services-slider-section .about-content p {
        font-size: 15px;
    }

    .services-slider-wrapper {
        padding: 0 40px;
    }

    .service-card {
        border-radius: 10px;
    }

    .service-card-image {
        height: 120px;
        border-radius: 10px 10px 0 0;
    }

    .service-card-content {
        padding: 0.85rem;
    }

    .service-card-title {
        font-size: 14px;
    }

    .service-card-button {
        padding: 5px 15px;
        font-size: 11px;
    }

    .services-next {
        width: 32px;
        height: 32px;
    }

    .services-next::after {
        font-size: 14px;
    }

    *[data-aos-delay] {
        transition-delay: 0 !important;
    }

    .page-title .title-text {
        width: calc(100% - 140px);
    }

    .product-card {
        height: 310px;
    }

    .page-title .sup-title {
        font-size: 16px;
    }

    .page-title .sup-title {
        font-size: 12px;
        padding: 0.35rem 1rem;
        letter-spacing: 1px;
    }

    .page-title .title {
        font-size: 28px;
    }

    .page-title .sup-title {
        font-size: 13px;
        padding: 0.4rem 1.2rem;
        letter-spacing: 1.2px;
    }

    .page-title .title {
        font-size: 32px;
    }

    .page-banner {
        height: 400px;
    }

    .banner-content .text-box h1 {
        font-size: 36px;
    }

    .banner-content .text-box .text {
        font-size: 16px;
    }

    .references-swiper {
        padding: 1.5rem 0;
    }

    .reference-item {
        height: 120px;
        padding: 1.2rem;
    }

    .sidebar-menu {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        top: 0;
    }

    .sidebar-title {
        font-size: 18px;
        margin-bottom: 0;
        padding-bottom: 0.8rem;
        cursor: pointer;
        user-select: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-arrow {
        display: block;
        width: 20px;
        height: 20px;
        fill: #272727;
        transition: transform 0.3s ease;
    }

    .sidebar-menu.active .sidebar-arrow {
        transform: rotate(180deg);
    }

    .sidebar-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        margin-top: 0;
    }

    .sidebar-menu.active .sidebar-nav {
        max-height: 1000px;
        margin-top: 1rem;
    }

    .sidebar-link {
        padding: 0.6rem 0.8rem;
        font-size: 14px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-content .highlight-text {
        font-size: 15px;
        padding: 1rem;
    }

    .service-list li {
        font-size: 15px;
        margin-bottom: 0.8rem;
    }

    .about-info .info-subtitle {
        font-size: 14px;
    }

    .about-info .info-title {
        font-size: 22px;
    }

    .about-info p {
        font-size: 15px;
    }

    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .feature-title {
        font-size: 16px;
    }

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

    .cta {
        background-attachment: scroll;
    }

    .cta-process-section {
        background-attachment: scroll;
    }

    .cta-commitment-bar {
        padding: 1.5rem 0;
    }

    .commitment-text h2 {
        font-size: 20px;
    }

    .cta-quote-button {
        font-size: 15px;
        padding: 12px 30px;
    }

    .process-main-title {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 3rem;
    }

    .process-card {
        padding: 2.5rem 1.5rem;
    }

    .bubble {
        display: none;
    }

    .bubble-7 {
        display: block;
    }

    .bubble-1 {
        width: 30px;
    }

    .bubble-3 {
        width: 25px;
    }

    .bubble-5 {
        width: 32px;
    }

    .bubble-7 {
        width: 28px;
    }

    .process-icon {
        width: 75px;
        height: 75px;
    }

    .process-icon svg {
        width: 35px;
        height: 35px;
    }

    .process-title {
        font-size: 20px;
        font-weight: 600;
    }

    .process-description {
        font-size: 15px;
    }

    .process-arrow {
        right: -20px;
    }

    .why-us {
        padding: 4.5rem 0;
    }

    .page-title .title {
        font-size: 34px;
    }

    .page-title .title-subtitle {
        font-size: 16px;
    }

    .why-feature-box {
        margin-bottom: 2.5rem;
    }

    .why-feature-icon {
        width: 26px;
        height: 26px;
        margin-bottom: 1.5rem;
    }

    .why-feature-icon svg {
        width: 12px;
        height: 12px;
    }

    .why-feature-title {
        font-size: 19px;
        margin-bottom: 0.8rem;
    }

    .why-feature-text {
        font-size: 14px;
    }

    .why-satisfaction-card {
        padding: 2rem;
        margin-top: 2rem;
    }

    .satisfaction-image img {
        max-width: 100%;
    }

    .user-reviews {
        background-attachment: scroll;
    }

    .reviews-wrapper {
        padding: 2rem 1.5rem;
    }

    .reviews-section-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .review-card {
        padding: 2rem;
    }

    .review-text {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .review-avatar span {
        font-size: 18px;
    }

    .review-author-details strong {
        font-size: 16px;
    }

    .reviews-next {
        width: 40px;
        height: 40px;
    }
}

@media only screen and (max-width: 570px) {
    .slide-img-wrapper {
        height: 400px;
    }

    .hero-content .text-box .slide-title {
        font-size: 24px;
        margin-bottom: 0.8rem;
    }

    .hero-content .text-box .slide-title .highlight-text::after {
        height: 2px;
        bottom: 3px;
    }

    .hero-content .text-box .slide-text {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .hero-content .text-box .hero-cta-button {
        padding: 10px 25px;
        font-size: 13px;
    }

    .hero-swiper-prev {
        width: 40px;
        height: 40px;
    }

    .hero-swiper-prev::after {
        font-size: 16px;
    }

    .hero-swiper-next {
        width: 40px;
        height: 40px;
    }

    .hero-swiper-next::after {
        font-size: 16px;
    }

    .services-slider-section .about-title {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .services-slider-section .about-subtitle {
        font-size: 12px;
    }

    .services-slider-section .about-content p {
        font-size: 14px;
        margin-bottom: 0.8rem;
    }

    .services-slider-wrapper {
        padding: 0 35px;
    }

    .service-card {
        border-radius: 8px;
    }

    .service-card-image {
        height: 100px;
        border-radius: 8px 8px 0 0;
    }

    .service-card-content {
        padding: 0.7rem;
        gap: 0.5rem;
    }

    .service-card-title {
        font-size: 13px;
    }

    .service-card-button {
        padding: 4px 12px;
        font-size: 10px;
    }

    .services-next {
        width: 30px;
        height: 30px;
    }

    .services-next::after {
        font-size: 13px;
    }

    .contact-actions .whatsapp-float {
        right: 0;
        left: 0;
        bottom: 0;
        width: 50%;
        height: 40px;
        border-radius: 0;
        justify-content: center;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.10);
    }

    .contact-actions .whatsapp-float span {
        display: inline;
        font-weight: 400;
    }

    .contact-actions .phone-float span {
        display: inline;
        font-weight: 400;
    }

    .contact-actions .whatsapp-ribbon {
        display: none !important;
    }

    .contact-actions .phone-float {
        display: flex;
        right: 0;
        bottom: 0;
        width: 50%;
        height: 40px;
        border-radius: 0;
        justify-content: center;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.10);
        position: fixed;
        background: #2E55AF;
        color: #fff;
        fill: #fff;
        align-items: center;
    }

    .contact-actions .phone-float svg {
        width: 27px;
        height: 27px;
        margin-right: 10px;
    }

    .contact-actions .phone-float span {
        display: inline;
        font-weight: 400;
    }

    .container {
        width: 95%;
    }

    .page-hero {
        justify-content: flex-end;
        height: 300px;
        background-position: left bottom;
        background-size: 220%;
        padding-top: 0;
    }

    .page-hero .ustm-title {
        font-size: 25px;
    }

    .bread-crumbs li a {
        font-size: 14px;
    }

    footer .footer-bottom-image {
        margin-bottom: 0;
    }

    footer .brand-logo {
        margin-bottom: 1.5rem;
        display: block;
    }

    footer .footer-social li a {
        margin-top: 1rem;
    }

    .py-set {
        padding: 3em 0;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .main-about .rounded-3 {
        margin-bottom: 1rem;
    }

    footer .footer-call {
        justify-content: center;
    }

    footer .header-social {
        margin-bottom: 1.5rem;
    }

    .page-hero .page-hero-content .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .page-hero .page-hero-content {
        padding: 2rem .5rem;
    }

    .page-hero .page-hero-content .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .page-hero .tertiary-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .primary-button {
        font-size: 14px;
        padding: 7px 21px;
    }

    .cta-commitment-bar {
        padding: 1.2rem 0;
    }

    .commitment-text h2 {
        font-size: 17px;
    }

    .cta-quote-button {
        font-size: 14px;
        padding: 10px 25px;
        display: block;
        text-align: center;
        margin-top: 1rem;
    }

    .process-main-title {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 2.5rem;
    }

    .process-card {
        padding: 2rem 1.2rem;
        margin-bottom: 2rem;
    }

    .process-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.5rem;
    }

    .process-icon svg {
        width: 30px;
        height: 30px;
    }

    .process-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .process-description {
        font-size: 14px;
    }

    .process-arrow {
        display: none;
    }

    .process-video-button {
        font-size: 14px;
        padding: 12px 25px;
    }

    .why-us {
        padding: 3.5rem 0;
    }

    .page-title .title {
        font-size: 30px;
    }

    .page-title .sup-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .page-title .title-subtitle {
        font-size: 15px;
    }

    .why-feature-box {
        margin-bottom: 2rem;
        text-align: center;
        align-items: center;
    }

    .why-feature-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 1.2rem;
    }

    .why-feature-icon svg {
        width: 12px;
        height: 12px;
    }

    .why-feature-title {
        font-size: 18px;
        margin-bottom: 0.7rem;
    }

    .why-feature-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .why-satisfaction-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .satisfaction-image img {
        max-width: 80%;
    }

    .reviews-wrapper {
        padding: 1.5rem 0rem;
    }

    .reviews-section-title {
        font-size: 24px;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }

    .review-avatar {
        width: 45px;
        height: 45px;
    }

    .review-avatar span {
        font-size: 16px;
    }

    .review-author-details strong {
        font-size: 15px;
    }

    .review-author-details span {
        font-size: 13px;
    }

    .category .why-card-content {
        padding: 1.2rem;
    }

    .category .why-card-title {
        font-size: 16px;
    }

    .category .why-card-text {
        font-size: 13px;
    }

    .reviews-next {
        width: 35px;
        height: 35px;
    }

    .reviews-prev {
        left: -5px;
    }

    .reviews-next {
        right: -5px;
    }

    .page-banner {
        height: 300px;
    }

    .banner-content .text-box h1 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .banner-content .text-box .text {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }

    .breadcrumb {
        font-size: 13px;
    }

    .breadcrumb-wrapper .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .references-swiper {
        padding: 1rem 0;
    }

    .reference-item {
        height: 100px;
        padding: 1rem;
    }

    .sidebar-menu {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .sidebar-title {
        font-size: 16px;
        margin-bottom: 0;
        padding-bottom: 0.6rem;
        cursor: pointer;
        user-select: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-arrow {
        display: block;
        width: 18px;
        height: 18px;
        fill: #272727;
        transition: transform 0.3s ease;
    }

    .sidebar-menu.active .sidebar-arrow {
        transform: rotate(180deg);
    }

    .sidebar-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        margin-top: 0;
    }

    .sidebar-menu.active .sidebar-nav {
        max-height: 1000px;
        margin-top: 0.8rem;
    }

    .sidebar-link {
        padding: 0.5rem 0.7rem;
        font-size: 13px;
    }

    .user-text p {
        font-size: 15px;
    }

    footer h5 {
        font-size: 1rem;
    }

    footer .footer-copyright {
        height: auto;
    }

    footer .footer-copyright .left {
        text-align: center;
        display: block;
        font-size: 14px;
        float: none;
    }

    footer .footer-copyright .right {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 1rem;
        align-items: center;
        margin-top: 1rem;
    }

    footer .footer-copyright .right .web-tasarim {
        margin: 0 !important;
    }

    footer .footer-copyright .right a {
        margin-right: 0px;
        display: block;
        float: none;
        margin: auto;
    }

    .user-reviews::after {
        background-image: linear-gradient(120deg, #4b505dc9 30%, #252b3dd1 60%);
    }

    .header-cta-button {
        display: none;
    }

    body {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 350px) {
    header .header-top .brand-logo {
        width: 210px;
    }

    header .header-top .brand-logo img {
        max-width: 100%;
    }
}

/* RESPONSIVE END */
/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Actions */
.header-action-btn {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 0;
}

.header-action-btn:hover {
    color: #ff8e01;
    background-color: rgba(67, 147, 74, 0.05);
    transform: translateY(-2px);
}

.header-action-btn svg {
    width: 20px;
    height: 20px;
}

.login-btn span {
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ff8e01;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Header Search Bar */
.header-search-bar {
    /* 
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    */
    padding: 15px 0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-search-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Search Input */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 100%;
    gap: 10px;
}

.search-btn {
    color: #1a1a1a;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ff7f05;
    border: none;
    flex-shrink: 0;
}

.search-btn:hover {
    color: #ffffff;
    background: #e67004;
    transform: translateY(-2px);
}

.search-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    width: 100%;
}

.search-input-wrapper.active {
    width: 100%;
}

.search-icon-left {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #999;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    height: 50px;
    padding: 0 20px 0 50px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.search-input:focus {
    border-color: #ff7f05;
    box-shadow: 0 0 0 3px rgba(255, 127, 5, 0.1);
}

/* Full Screen Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cart-drawer {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

.cart-overlay.active .cart-drawer {
    right: 0;
}

.cart-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #272727;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-btn:hover {
    color: #ff7f02;
}

.cart-body {
    flex-grow: 1; padding: 0 30px; overflow-y: auto; display: flex; width: 100%; flex-direction: column; justify-content: flex-end;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .header-search-bar {
        padding: 12px 0;
    }
    
    .search-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .search-input {
        height: 45px;
    }
    
    .search-btn {
        width: 45px;
        height: 45px;
    }
}


@media (max-width: 576px) {
    .cart-drawer {
        max-width: 100%;
    }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 9/16;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    transform: rotate(90deg);
    color: #ff7f02;
}

.video-modal-body {
    width: 100%;
    height: 100%;
}

.video-modal-body iframe {
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media only screen and (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-width: none;
    }

    .video-modal-close {
        top: -45px;
        font-size: 35px;
    }
}

/* FEATURES SECTION */
.features-section {
    background-color: #fff;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    background-color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: #ff8e01;
}

.feature-card-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    color: #1a1a1a;
}

.feature-card-icon svg,
.feature-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.feature-card-content p {
    font-size: 14px;
    margin-bottom: 0;
    color: #777;
    font-weight: 400;
}

/* CATEGORIES SECTION */
.categories-section {
    background-color: #fff;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card:hover .category-card-image {
    transform: scale(1.1);
}

.category-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    transform: translateY(0);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.category-card:hover .category-card-content {
    padding-bottom: 35px;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.category-card-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.category-link {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #ff8e01;
}

/* PRODUCTS SECTION */
.section-title .subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: #ff8e01;
}

.card-grey .product-card {
    background: #f5f5f5;
}

.card-grey .product-card:hover {
    background: #f5f5f5;
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .main-img {
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1;
}

.product-info {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-info .info-left .category {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-info .info-left .product-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.product-info .info-left .price {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
}

.product-info .add-to-cart-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.product-info .add-to-cart-btn:hover {
    background: #ff8e01;
    border-color: #ff8e01;
    color: #fff;
}

.product-info .add-to-cart-btn svg {
    width: 20px;
    height: 20px;
}

/* CART ITEMS */
.cart-items-list {
    padding: 20px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.cart-item:last-child { border-bottom: 0; padding-bottom: 0;}
.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.cart-item-info .item-price {
    font-size: 14px;
    color: #ff8e01;
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #ff0000;
}

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/footer-bg.png') no-repeat center center / cover;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ff8e01;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-title span {
    color: #ff8e01;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item .number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.countdown-item .label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.countdown-separator {
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    padding-top: 5px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #ff8e01;
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #ff8e01;
}

.cta-button:hover {
    background: transparent;
    color: #ff8e01;
}

/* DARK FOOTER REFACTOR */
footer {
    position: relative;
    background: url('../images/footer-bg-2.jpg') no-repeat center center / cover;
    color: #222;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

footer .footer-wrapper,
footer .footer-copyright {
    position: relative;
    z-index: 2;
}

footer .footer-wrapper {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

footer .footer-link-list li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

footer .footer-link-list li a:hover {
    color: #ff8e01;
    padding-left: 5px;
}

footer .footer-text {
    color: rgba(255, 255, 255, 0.6);
}


footer .copyright-wrapper {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer .brand-logo img {
    filter: brightness(0) invert(1);
}

/* FOOTER TOP FEATURES */
.footer-top-features {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
}

.footer-feature-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* PAYMENT ICONS */
.footer-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 38px;
    width: 100%;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #dddddd4f;
}

.payment-icon {
    width: 45px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.payment-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

/* OUR PRODUCTS SECTION */
/* OUR PRODUCTS SECTION */
.premium-product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.premium-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 127, 5, 0.2);
}

.premium-product-card .card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.premium-product-card .card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-product-card:hover .card-image::after {
    opacity: 1;
}

.premium-product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-product-card:hover .card-image img {
    transform: scale(1.12);
}

.premium-product-card .card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-product-card .card-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #1a1a1a;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.premium-product-card:hover .card-title {
    color: #ff7f05;
}

.premium-product-card .card-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-product-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff7f05;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
}

.premium-product-card .card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.premium-product-card .card-link:hover {
    gap: 12px;
    color: #e66d00;
}

.premium-product-card .card-link:hover svg {
    transform: translateX(5px);
}

/* AUTH MODAL */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    z-index: 11000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    padding: 20px;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-content {
    background: #fff;
    width: 100%;
    max-width: 750px;
    max-height: 90vh;
    border-radius: 30px;
    position: relative;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.auth-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f1f3f5;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    z-index: 100;
}

.auth-modal-close:hover {
    background: #ff7f05;
    color: #fff;
    transform: rotate(90deg);
}

.auth-modal-body {
    padding: 40px 50px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.auth-modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.auth-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.auth-modal-header p {
    color: #6b7280;
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* LOGIN & REGISTER FORMS */
.auth-login-form,
.keremiya-form-register {
    display: none;
}

.auth-login-form.active,
.keremiya-form-register.active {
    display: block;
}

.form-row {
    margin-bottom: 18px;
    position: relative;
}

.form-row-wide {
    width: 100%;
}

.auth-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.auth-modal-grid .form-row {
    margin-bottom: 0;
}

.auth-modal-grid .form-row-wide {
    grid-column: span 2;
}

.form-section-title {
    grid-column: span 2;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.form-section-title:first-child {
    margin-top: 0;
}

.input-text,
.input-password,
.auth-modal select,
.static-auth-wrapper select {
    width: 100%;
    padding: 10px 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.input-text:focus,
.input-password:focus,
.auth-modal select:focus,
.static-auth-wrapper select:focus {
    border-color: #ff7f05;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 127, 5, 0.08);
}

.form-row label {
    font-weight: 700;
    margin-bottom: 5px;
    color: #4b5563;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-row label.fw-bold {
    text-transform: none;
    font-size: 0.95rem;
    color: #1a1a1a;
    letter-spacing: normal;
}

.required {
    color: #ef4444;
    margin-left: 2px;
}

.auth-modal .button-large,
.static-auth-wrapper .button-large {
    background: #ff7f05;
    color: #fff;
    padding: 16px 30px;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.auth-modal .button-large:hover,
.static-auth-wrapper .button-large:hover {
    background: #e66d00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 127, 5, 0.2);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.auth-modal-footer {
    border-top: 1px solid #f3f4f6;
    padding: 25px 50px;
    text-align: center;
    background: #f9fafb;
}

.auth-modal-footer p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #6b7280;
}

.auth-modal-footer a {
    color: #ff7f05;
    font-weight: 800;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.auth-modal-footer a:hover {
    color: #e66d00;
}

/* Radio styles */
.radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0;
}

.radio:hover {
    opacity: 0.8;
}

.radio input[type="radio"] {
    width: 15px;
    height: 15px;
    accent-color: #ff7f05;
    margin: 0;
    flex-shrink: 0;
}

.radio span {
    font-weight: 600;
    color: #374151;
    font-size: 0.8rem;
    line-height: 1.2;
}

.radio-group {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 10px;
}

@media (max-width: 991px) {

    .auth-modal-grid,
    .radio-group {
        grid-template-columns: 1fr;
    }
}

.other-text {
    margin-top: 10px;
}

.select-style {
    display: block;
    position: relative;
}

.select-style::after {
    content: '▼';
    font-size: 10px;
    color: #6b7280;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.auth-modal select,
.static-auth-wrapper select {
    appearance: none;
    padding-right: 35px;
}

.text-align-right {
    text-align: right;
}

/* Static Auth Wrapper Styles */
.static-auth-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f3f5;
}

.static-auth-wrapper .auth-modal-header {
    text-align: left;
    margin-bottom: 30px;
}

.static-auth-wrapper .auth-modal-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.static-auth-wrapper .auth-modal-header p {
    margin: 0;
}

@media (max-width: 768px) {
    .static-auth-wrapper {
        padding: 30px 20px;
    }
}

/* Header Trade Account Button */
.trade-account-btn {
    background: #ff7f05;
    border-radius: 12px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: auto !important;
    height: auto !important;
}

.trade-account-btn span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.trade-account-btn:hover {
    background: #e67004;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 5, 0.4);
}

.trade-account-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}


/* Checkout'a özel stiller */
.form-label { font-weight: 600; font-size: 0.9rem; color: #333; }
.form-control, .form-select { padding: 0.7rem; border-radius: 6px; border: 1px solid #ddd; }
.card { border: none; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.bg-summary { background-color: #f8f9fa; }

@media (max-width: 1200px) {
    .trade-account-btn span {
        display: none;
    }

    .trade-account-btn {
        padding: 10px !important;
    }
}