:root {
    --ozcode-blue: #0d6efd;
    --ozcode-purple: #6f42c1;
    --ozcode-light-gray: #f8f9fa;
    --ozcode-dark-text: #212529;
    --ozcode-body-bg: #FFFFFF;
    --ozcode-footer-bg: #101228;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--ozcode-body-bg);
    color: var(--ozcode-dark-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.section-padding {
    padding: 4rem 0;
}

.header-section {
    transition: all .3s ease;
    border-bottom: 1px solid transparent;
}

.header-section.scrolled {
    background-color: #fff;
    border-bottom-color: #dee2e6;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.nav-menu__item {
    margin: 0 15px;
}

.nav-menu__link {
    color: var(--ozcode-dark-text);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ozcode-blue);
    transition: width 0.3s ease;
}

.nav-menu__link:hover,
.nav-menu__link.active {
    color: var(--ozcode-blue);
}

.nav-menu__link:hover::after,
.nav-menu__link.active::after {
    width: 100%;
}

.header-right .btn {
    font-weight: 500;
}

.hero-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #e9f1ff;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 0),
        linear-gradient(135deg, #e6f0ff 0%, #f3e7ff 100%);
    background-size: 1rem 1rem, 100% 100%;
}

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

.hero-section .display-4 {
    font-weight: 700;
}

.hero-section .lead {
    color: #6c757d;
}

.hero-search {
    position: relative;
}

.hero-search .form-control {
    padding-left: 3.5rem; /* İkon için boşluğu biraz artır */
    height: 58px;
    border-radius: 50rem;
    border: 1px solid #dee2e6;
}

.hero-search .search-icon {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    height: 1.2rem; /* font-size ile aynı olmalı */
    margin: auto 0; /* Dikeyde ortalamayı sağlar */
    color: #adb5bd;
    font-size: 1.2rem;
    pointer-events: none; /* İkonun üzerine tıklanmasını engeller */
}

.hero-search .btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50rem;
    padding: .6rem 1.5rem;
}

/* Hero Dekorasyon Görselleri */
@keyframes hero-image-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-image-decoration {
    position: absolute;
    z-index: 1;
    animation: hero-image-float 8s ease-in-out infinite;
    opacity: 0.8;
}

.hero-image-decoration img {
    max-width: 100%;
    height: auto;
}

.hero-image-left {
    top: 30%;
    left: 4%;
    transform: translateY(-50%);
    width: 380px;
    animation-delay: -2s;
}

.hero-image-right {
    top: 30%;
    right: 4%;
    transform: translateY(-50%);
    width: 380px;
}

/* Yüzen İkonlar (Ortalama Düzeltmesi) */
@keyframes float-animation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-icon {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--ozcode-blue);
    border-radius: 50%;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.1);
    animation: float-animation 6s ease-in-out infinite;
    z-index: 1;
}

.floating-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-icon.icon-css { top: 20%; left: 15%; width: 60px; height: 60px; font-size: 1.5rem; animation-delay: 0s; }
.floating-icon.icon-php { top: 30%; right: 12%; width: 70px; height: 70px; font-size: 2rem; animation-delay: -2s; }
.floating-icon.icon-js { bottom: 25%; left: 20%; width: 50px; height: 50px; font-size: 1.3rem; animation-delay: -4s; }
.floating-icon.icon-html { bottom: 15%; right: 25%; width: 60px; height: 60px; font-size: 1.5rem; animation-delay: -1s; }



.filter-tabs .nav-link { color: #6c757d; font-weight: 500; background-color: #e9ecef; border-radius: 0.375rem; padding: 0.6rem 1.25rem; margin: 0 0.3rem; border: 1px solid transparent; transition: all 0.2s ease-in-out; }
.filter-tabs .nav-link:hover { color: var(--ozcode-dark-text); background-color: #dee2e6; }
.filter-tabs .nav-link.active { background-color: var(--ozcode-dark-text); color: #fff; border-color: var(--ozcode-dark-text); }

.section-title { font-weight: 700; margin-bottom: 2rem; }

.category-card { border: 0; background-color: var(--ozcode-light-gray); padding: 1.5rem; border-radius: 0.5rem; text-align: center; transition: all 0.3s ease; color: var(--ozcode-dark-text); text-decoration: none; }
.category-card:hover { transform: translateY(-5px); background-color: var(--ozcode-blue); color: #fff; }
.category-card i { font-size: 2.5rem; margin-bottom: 1rem; }
.category-card .category-name { font-weight: 500; }

.offer-section { background: linear-gradient(135deg, var(--ozcode-blue) 0%, var(--ozcode-purple) 100%); color: #fff; border-radius: 1rem; }

.testimonial-card { border: 1px solid #e9ecef; }
.testimonial-card .avatar { width: 60px; height: 60px; border-radius: 50%; margin-right: 1rem; }
.testimonial-card .customer-name { font-weight: 700; }
.testimonial-card .customer-title { font-size: 0.9rem; color: #6c757d; }

.blog-card { border: 1px solid #e9ecef; transition: all 0.3s ease; }
.blog-card:hover { box-shadow: 0 .5rem 1rem rgba(0,0,0,.10)!important; transform: translateY(-5px); }
.blog-card img { height: 200px; object-fit: cover; }

.category-sidebar .list-group-item.active { background-color: var(--ozcode-blue); border-color: var(--ozcode-blue); }

.footer-section {
    background-color: var(--ozcode-footer-bg);
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    background-image: url('https://www.transparenttextures.com/patterns/dot.png');
    background-repeat: repeat;
}

.footer-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(13, 110, 253, 0) 70%);
    z-index: 0;
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

.footer-widget__logo img {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-widget__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-widget__title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff !important;
}

.footer-lists {
    list-style: none;
    padding: 0;
}

.footer-lists__item {
    margin-bottom: 0.75rem;
}

.footer-lists__link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-lists__link:hover {
    color: #fff !important;
    padding-left: 5px;
}

/* YENİ: Sosyal Medya İkon Stilleri */
.social-icon-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    gap: 1rem;
}

.social-icon-list__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon-list__link:hover {
    background-color: var(--ozcode-blue);
    transform: translateY(-3px);
}

.subscribe-box .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    padding: .75rem 1rem;
}

.subscribe-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-box .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--ozcode-blue);
    box-shadow: none;
    color: #fff;
}

.bottom-footer {
    background-color: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.bottom-footer__text {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.auth-wrapper {
    min-height: 60vh;
}
.auth-card {
    max-width: 450px;
    width: 100%;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .75rem;
}

.account-nav .nav-link {
    color: var(--ozcode-dark-text);
    font-weight: 500;
    border-radius: .375rem;
    margin-bottom: 5px;
}
.account-nav .nav-link.active {
    background-color: var(--ozcode-blue);
    color: #fff;
}
.account-profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

/* YENİ: Modern İletişim Sayfası Stilleri */
.contact-gradient-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15);
}

.contact-gradient-left {
    background: linear-gradient(135deg, var(--ozcode-purple) 0%, var(--ozcode-blue) 100%);
    padding: 3rem;
    color: #fff;
    height: 100%;
}

.contact-gradient-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-gradient-icon {
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    margin-right: 1rem;
}

.contact-gradient-info-text,
.contact-gradient-info-text a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.contact-gradient-right {
    background-color: #fff;
    padding: 3rem;
    height: 100%;
}

.contact-gradient-input {
    background-color: var(--ozcode-light-gray);
    border: 1px solid #dee2e6;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
}

.contact-gradient-input:focus {
    background-color: #fff;
    border-color: var(--ozcode-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.contact-gradient-btn {
    background-color: var(--ozcode-blue);
    color: #fff;
    border: none;
    padding: .75rem 1.5rem;
    border-radius: .375rem;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.2s ease;
}

.contact-gradient-btn:hover {
    background-color: #0b5ed7;
}

.testimonial-slider-section {
    position: relative;
}

.testimonial-slider {
    padding-bottom: 4rem; /* Pagination için boşluk */
}

.testimonial-slider .swiper-slide {
    height: auto; /* Kartların kendi yüksekliğine sahip olmasını sağlar */
}

.testimonial-slider .testimonial-card {
    height: 100%; /* Slider içindeki kartların aynı yükseklikte olmasını sağlar */
}

.testimonial-slider .swiper-pagination-bullet-active {
    background-color: var(--ozcode-blue);
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    color: var(--ozcode-blue);
    transition: all 0.2s ease;
}

.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    transform: scale(1.1);
}

.quote-form-container {
    background-color: #fff;
    border-radius: .75rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08);
    overflow: hidden;
}

.quote-form-container {
    background-color: #fff;
    border-radius: .75rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08);
    overflow: hidden;
}

.quote-info-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Metni yukarı, resmi aşağı iter */
    padding: 3rem;
    color: #fff;
    background: linear-gradient(160deg, var(--ozcode-blue) 0%, var(--ozcode-purple) 100%);
}

.quote-info-panel h2 {
    font-weight: 700;
}

.quote-info-panel p {
    opacity: 0.8;
}

.quote-info-image-wrapper {
    text-align: center;
    padding-top: 2rem;
}

.quote-info-image-wrapper img {
    max-width: 80%;
    height: auto;
}

.quote-form-panel {
    padding: 3rem;
}

.quote-form .form-control, .quote-form .form-select {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: .75rem 1rem;
}

.quote-form .form-control:focus, .quote-form .form-select:focus {
    background-color: #fff;
    border-color: var(--ozcode-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.quote-form .btn {
    padding: .75rem 1.5rem;
    font-weight: 500;
}

.btn-hover {
    width: 120px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    cursor: pointer;
    height: 45px;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    transition: all .4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}


.btn-hover {
    width: 120px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    cursor: pointer;
    height: 45px;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    transition: all .4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hover:hover {
    background-position: 100% 0;
    transition: all .4s ease-in-out;
    color: #fff !important;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-1 {
    background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}
.btn-hover.color-3 {
    background-image: linear-gradient(to right, #667eea, #764ba2, #6B8DD6, #8E37D7);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}

.btn-hover .btn-text,
.btn-hover .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: top .3s ease-in-out;
}

.btn-hover .btn-icon {
    top: 100%; /* Başlangıçta altta gizli */
}

.btn-hover:hover .btn-text {
    top: -100%; /* Hover'da yukarı kaybolur */
}

.btn-hover:hover .btn-icon {
    top: 0; /* Hover'da ortaya gelir */
}

/* YENİ: Mobil Menü Düzeltmeleri */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem;
        border-top: 1px solid #dee2e6;
        margin-top: .5rem;
    }
    .nav-menu__item {
        margin: .5rem 0;
    }
    .header-right {
        flex-direction: column;
        align-items: stretch !important;
        margin-top: 1rem;
    }
    .header-right .d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }
    .btn-hover {
        width: 100%;
    }
}

.product-gallery-main {
    border-radius: .75rem;
    overflow: hidden;
    border: 1px solid #dee2e6;
    height: 450px; /* Ana görsel için sabit yükseklik */
    background-color: #f8f9fa;
}

.product-gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görselin orantısını koruyarak alanı doldurmasını sağlar */
}

.gallery-thumbs {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity .3s ease;
}
.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.gallery-thumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .375rem;
    border: 2px solid transparent;
}
.gallery-thumbs .swiper-slide-thumb-active img {
    border-color: var(--ozcode-blue);
}

.product-sidebar .card {
    border: 1px solid #e9ecef;
    border-radius: .75rem;
    margin-bottom: 1.5rem;
}

.product-sidebar .price {
    font-weight: 700;
    font-size: 2rem;
}
.product-sidebar .price-note {
    font-size: .8rem;
}
.product-sidebar .btn {
    padding: .75rem;
    font-weight: 600;
}
.product-sidebar .list-group-item {
    padding: .75rem 1rem;
    border-left: 0;
    border-right: 0;
}
.product-sidebar .list-group-item i.icon-left {
    width: 20px;
    text-align: center;
    margin-right: .5rem;
}
.product-sidebar .info-table td {
    padding: .5rem;
}
.product-sidebar .info-table .info-label {
    font-weight: 500;
    color: #6c757d;
}
.product-sidebar .tag {
    background-color: #e9ecef;
    padding: .25rem .6rem;
    border-radius: .25rem;
    font-size: .8rem;
    color: #495057;
    text-decoration: none;
}
.addon-item {
    border: 2px solid #e9ecef;
    border-radius: .5rem;
    padding: .75rem 1rem;
    cursor: pointer;
    transition: all .2s ease;
}
.addon-item:hover {
    border-color: var(--ozcode-blue);
    background-color: #f8f9fa;
}
.addon-item.selected {
    border-color: var(--ozcode-blue);
    background-color: #e6f0ff;
}
.social-share a {
    color: #6c757d;
    text-decoration: none;
    transition: color .2s ease;
}
.social-share a:hover {
    color: var(--ozcode-blue);
}

.license-selector {
    background-color: #e9ecef;
    border-radius: .5rem;
    padding: 5px;
}
.license-selector .btn {
    flex: 1;
    font-weight: 500;
    color: #6c757d;
    border: none;
    box-shadow: none !important;
}
.license-selector .btn.active {
    background-color: #fff;
    color: var(--ozcode-blue);
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,.1) !important;
}

/* Payment Method Cards */
.payment-method-card {
    border: 2px solid #e9ecef;
    border-radius: .75rem;
    cursor: pointer;
    transition: all .2s ease;
    min-height: 80px; /* Kartların minimum yüksekliği */
}

.payment-method-card:hover {
    border-color: var(--ozcode-blue);
    background-color: #f8f9fa;
}

.form-check-input:checked + .payment-method-card {
    border-color: var(--ozcode-blue);
    background-color: #e6f0ff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.payment-method-card h5 {
    font-weight: 600;
    color: var(--ozcode-dark-text);
}

.payment-method-card i {
    color: #6c757d;
}

/* Order Status Badges */
.badge-pending {
    background-color: #ffc107; /* Bootstrap yellow */
    color: #212529; /* Dark text for contrast */
}

.badge-cancelled {
    background-color: #dc3545; /* Bootstrap red */
    color: #fff;
}

.badge-completed {
    background-color: #28a745; /* Bootstrap green */
    color: #fff;
}

.payment-method-card {
    border: 2px solid #e9ecef;
    transition: all .3s ease;
    cursor: pointer;
}

.payment-method-card:hover {
    border-color: var(--ozcode-blue);
    background-color: #f8f9fa;
}

/* Radio butona tıklandığında label'a stil uygula */
.form-check-input:checked + .payment-method-card {
    border-color: var(--ozcode-blue);
    background-color: #e6f0ff;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

.iban-text {
    font-family: monospace;
}

.ticket-replies {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.reply-item {
    display: flex;
    gap: 1rem;
    max-width: 80%;
}
.reply-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.reply-content {
    border-radius: .75rem;
    padding: 1rem;
    width: 100%;
}
.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: .5rem;
}
.reply-item {
    display: flex;
    gap: 1rem;
    max-width: 80%;
}
.reply-message {
    white-space: pre-wrap;
    word-wrap: break-word;
}
.ticket-detail-header {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: .75rem;
    padding: 1.5rem;
}
.ticket-subject {
    font-size: 1.75rem;
    font-weight: 600;
}
.ticket-status-badge {
    font-size: .9rem;
    padding: .5em .9em;
}
.reply-time {
    font-size: .8rem;
    color: #6c757d;
}
/* Admin Yanıtı */
.admin-reply {
    align-self: flex-start;
}
.admin-reply .reply-avatar {
    background-color: #e9ecef;
    color: #495057;
}
.admin-reply .reply-content {
    background-color: #f1f3f5;
    border: 1px solid #e9ecef;
}

/* Kullanıcı Yanıtı */
.user-reply {
    align-self: flex-end;
}
.user-reply .reply-avatar {
    background-color: #0d6efd;
    color: #fff;
}
.user-reply .reply-content {
    background-color: #e6f0ff;
    border: 1px solid #cce0ff;
}
