/*
* Nexilos - Yazılım Hizmetleri
* Main CSS File
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #6C63FF;
    --secondary-color: #3F3D56;
    --accent-color: #FF6B6B;
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --gray-color: #6C757D;
    --hover-primary: #534CD8;
    --hover-secondary: #2E2C3D;
    --hover-accent: #FF5252;
    --transition: all 0.3s ease-in-out;
}

/* Add checkmark list style */
/* ul:not(.navbar-nav):not(.stripe-navbar__nav):not(.social-links):not(.footer-links):not(.admin-sidebar .menu ul) {
    list-style: none;
    padding-left: 1.5em;
}

ul:not(.navbar-nav):not(.stripe-navbar__nav):not(.social-links):not(.footer-links):not(.admin-sidebar .menu ul) li {
    position: relative;
    margin-bottom: 0.5em;
}

ul:not(.navbar-nav):not(.stripe-navbar__nav):not(.social-links):not(.footer-links):not(.admin-sidebar .menu ul) li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5em;
    width: 1em;
    text-align: center;
} */

/* SADECE .checklist CLASS'I İÇİN TIKLI LİSTE */
ul.checklist {
    list-style: none;
    padding-left: 1.5em;
}
ul.checklist li {
    position: relative;
    margin-bottom: 0.5em;
}
ul.checklist li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5em;
    width: 1em;
    text-align: center;
}

@font-face {
    font-family: 'Sohne';
    src: url('../fonts/sohne.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Sohne', 'Poppins', Arial, sans-serif;
    color: #212529;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--hover-primary);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

section {
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: calc(50% - 25px);
}

.section-header p {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--gray-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader .spinner {
    width: 60px;
    height: 60px;
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 4px solid transparent;
    border-top: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #6C63FF;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.back-to-top i {
    font-size: 18px;
    color: #fff;
}

.back-to-top:hover {
    background: var(--hover-primary);
    transform: translateY(-5px);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: var(--transition);
    z-index: 997;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

#header .logo-text img {
    width: 250px;
    height: auto;
    position: relative;
    left: 17rem;
}

#header .text-logo {
    font-family: 'Sohne', 'Poppins', Arial, sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 8px rgba(108,99,255,0.08);
    display: flex;
    align-items: center;
    height: 100%;
}

#header .navbar {
    padding: 0;
}

#header .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

#header .navbar li {
    position: relative;
}

#header .navbar a,
#header .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    white-space: nowrap;
    transition: var(--transition);
}

#header .navbar a i,
#header .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

#header .navbar a:hover,
#header .navbar .active,
#header .navbar .active:focus,
#header .navbar li:hover > a {
    color: var(--primary-color);
}

#header .login-btn {
    margin-left: 15px;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--primary-color);
    transition: var(--transition);
}

#header .login-btn:hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 0;
}

#hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 56px;
    color: var(--secondary-color);
}

#hero h2 {
    color: var(--gray-color);
    margin: 15px 0 0 0;
    font-size: 20px;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 30px;
    color: #fff;
    background: var(--primary-color);
}

#hero .btn-get-started:hover {
    background: var(--hover-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

#hero .hero-img {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    padding: 40px 20px;
    transition: var(--transition);
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

.services .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.08);
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-bottom: 20px;
}

.services .icon-box:hover .icon {
    background: var(--primary-color);
}

.services .icon-box .icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.services .icon-box:hover .icon i {
    color: #fff;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 20px;
}

.services .icon-box h4 a {
    color: var(--secondary-color);
    transition: ease 0.3s;
}

.services .icon-box h4 a:hover {
    color: var(--primary-color);
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .product-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.products .product-image {
    height: 200px;
    overflow: hidden;
}

.products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.products .product-details {
    padding: 20px;
}

.products .product-category {
    color: #777;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.products .product-title {
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    min-height: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products .product-price {
    margin-bottom: 15px;
}

.products .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
}

.products .old-price {
    text-decoration: line-through;
    color: var(--gray-color);
    margin-right: 10px;
}

.products .product-features {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.products .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products .btn-buy {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    transition: var(--transition);
}

.products .btn-buy:hover {
    background: var(--hover-primary);
}

.products .rating {
    color: #FFD700;
    font-size: 14px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 18px;
    color: var(--primary-color);
}

.about .content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

.about .play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.about .play-btn::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-left: 15px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    z-index: 3;
}

.about .play-btn::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulsate 1.8s infinite;
}

@keyframes pulsate {
    0% { transform: scale(0.6, 0.6); opacity: 1; }
    100% { transform: scale(1.2, 1.2); opacity: 0; }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
    color: var(--secondary-color);
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.contact .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact .info-box i {
    font-size: 32px;
    color: var(--primary-color);
    float: left;
    line-height: 1;
}

.contact .info-box h3 {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 5px 0 10px 45px;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin: 0 0 0 45px;
}

.contact .php-email-form {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.contact .php-email-form .form-control {
    border-radius: 4px;
    height: 44px;
    padding-left: 15px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.contact .php-email-form textarea {
    padding: 10px 15px;
    height: auto;
}

.contact .php-email-form button[type="submit"] {
    background: var(--primary-color);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: var(--transition);
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #3F3D56;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: var(--dark-color);
    padding: 60px 0 30px 0;
}

#footer .footer-info {
    margin-bottom: 30px;
}

#footer .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

#footer .social-links {
    margin-top: 30px;
}

#footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: var(--transition);
}

#footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

#footer .footer-links {
    margin-bottom: 30px;
}

#footer .footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

#footer .footer-links h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

#footer .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-links ul i {
    padding-right: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

#footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

#footer .footer-links ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

#footer .footer-newsletter {
    margin-top: 30px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 15px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 40px);
    outline: none;
}

#footer .footer-newsletter form button {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    background: var(--primary-color);
    color: #fff;
    transition: var(--transition);
    border-radius: 50px;
}

#footer .footer-newsletter form button:hover {
    background: var(--hover-primary);
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# Message Alert
--------------------------------------------------------------*/
.message-alert {
    position: fixed;
    top: 80px;
    right: 15px;
    z-index: 1000;
    width: 300px;
    animation: slideInRight 0.5s;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/*--------------------------------------------------------------
# Login/Register Forms
--------------------------------------------------------------*/
.auth-form {
    max-width: 500px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.auth-form .form-title {
    text-align: center;
    margin-bottom: 30px;
}

.auth-form .form-title h2 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .btn-submit {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    width: 100%;
    transition: var(--transition);
}

.auth-form .btn-submit:hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
}

.auth-form .auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-form .auth-footer a {
    color: var(--primary-color);
}

.auth-form .auth-footer a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Admin Panel
--------------------------------------------------------------*/
.admin-sidebar {
    background: var(--secondary-color);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    z-index: 999;
    transition: var(--transition);
}

.admin-sidebar .brand {
    padding: 20px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar .brand h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.admin-sidebar .menu {
    padding: 20px 0;
}

.admin-sidebar .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-sidebar .menu li {
    margin-bottom: 5px;
}

.admin-sidebar .menu a {
    padding: 12px 20px;
    display: block;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.admin-sidebar .menu a:hover,
.admin-sidebar .menu a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.admin-sidebar .menu i {
    margin-right: 8px;
}

.admin-content {
    margin-left: 250px;
    padding: 20px;
    transition: var(--transition);
}

.admin-header {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 5px;
}

.admin-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.admin-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
}

.admin-table th {
    background: var(--light-color);
}

.admin-action-btn {
    padding: 5px 10px;
    margin: 0 3px;
    border-radius: 3px;
    color: #fff;
}

.admin-btn-edit {
    background: var(--primary-color);
}

.admin-btn-delete {
    background: var(--accent-color);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .accordion-item {
    border: 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    overflow: hidden;
}

.faq .accordion-button {
    padding: 20px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: var(--secondary-color);
    text-align: left;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button::after {
    font-weight: 900;
    border: 0;
}

.faq .accordion-body {
    padding: 0 20px 20px;
    color: var(--gray-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 200px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: var(--transition);
}

.testimonials .testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 6px solid rgba(108, 99, 255, 0.2);
    margin-right: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    color: var(--secondary-color);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(108, 99, 255, 0.2);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (max-width: 991px) {
    #header .navbar a {
        padding: 8px 12px;
    }
    
    #hero {
        height: auto;
        padding: 120px 0 60px 0;
    }
    
    #hero .hero-img {
        text-align: center;
        margin-top: 40px;
    }
    
    #hero .hero-img img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    #header .login-btn {
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
    
    #hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
    
    #hero h2 {
        font-size: 18px;
    }
    
    .admin-sidebar {
        width: 70px;
        overflow: hidden;
    }
    
    .admin-sidebar .brand h2, .admin-sidebar .menu span {
        display: none;
    }
    
    .admin-sidebar .menu i {
        font-size: 20px;
        margin-right: 0;
    }
    
    .admin-content {
        margin-left: 70px;
    }
}

@media (max-width: 575px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    #hero .btn-get-started {
        padding: 8px 25px;
        font-size: 14px;
    }
    
    #footer .footer-top {
        padding: 30px 0;
    }
    
    .admin-sidebar {
        width: 0;
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .admin-header {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-header h1 {
        margin-bottom: 15px;
    }
    
    .message-alert {
        width: 250px;
    }
    
    #header .logo-text img {
        width: 56px;
    }
    #header .text-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

/* Custom animations */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#main {
    padding-top: 90px;
    min-height: 80vh;
}

.btn-main-action, .btn-get-started, .btn-primary {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: var(--transition);
    color: #fff;
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 16px rgba(108,99,255,0.08);
}

.btn-main-action:hover, .btn-get-started:hover, .btn-primary:hover {
    background: var(--hover-primary);
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 24px rgba(108,99,255,0.15);
}

.btn-outline-primary {
    color: var(--primary-color);
    background: #fff;
    border: 2px solid var(--primary-color);
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 24px rgba(108,99,255,0.15);
    transform: translateY(-3px) scale(1.04);
}

#technologies .tech-ticker-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 24px 0;
}
#technologies .tech-ticker {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: ticker-scroll 18s linear infinite;
    will-change: transform;
}
#technologies .tech-ticker .tech-icon {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#technologies .tech-ticker .tech-icon img {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(108,99,255,0.08));
    transition: transform 0.2s;
}
#technologies .tech-ticker .tech-icon img:hover {
    transform: scale(1.12) rotate(-6deg);
}
#technologies .tech-ticker .tech-label {
    display: none;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    #technologies .tech-ticker {
        gap: 28px;
    }
    #technologies .tech-ticker .tech-icon img {
        width: 36px;
        height: 36px;
    }
}

/* Stripe-style Mega Menu Header */
.stripe-header {
    background: linear-gradient(90deg, #fff 80%, #f8f9fa 100%);
    box-shadow: 0 2px 16px rgba(60,60,100,0.06);
    z-index: 1002;
}
.stripe-navbar {
    min-height: 64px;
    position: relative;
}
.stripe-navbar__logo .text-logo {
    font-family: 'Sohne', 'Poppins', Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-left: 8px;
}
.stripe-navbar__nav {
    list-style: none;
    gap: 8px;
    margin: 0 24px;
    padding: 0;
}
.stripe-navbar__item {
    position: relative;
}
.stripe-navbar__link {
    display: block;
    padding: 12px 18px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1.05rem;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.stripe-navbar__link::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--hover-primary));
    border-radius: 2px;
    transition: width 0.28s cubic-bezier(.4,1.2,.4,1), left 0.28s cubic-bezier(.4,1.2,.4,1);
    z-index: 1;
}
.stripe-navbar__link:hover::after,
.stripe-navbar__item--has-mega:hover > .stripe-navbar__link::after {
    width: 80%;
    left: 10%;
}
.stripe-navbar__item--has-mega:hover > .stripe-mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1.01);
    filter: drop-shadow(0 16px 48px rgba(108,99,255,0.13));
}
.stripe-mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 540px;
    background: linear-gradient(120deg, #fff 80%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(60,60,100,0.13);
    border-radius: 12px;
    padding: 32px 36px 24px 36px;
    display: flex;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(32px) scale(0.98);
    transition: all 0.32s cubic-bezier(.4,1.2,.4,1);
    z-index: 1003;
    border-top: 4px solid var(--primary-color);
    box-sizing: border-box;
    filter: drop-shadow(0 8px 32px rgba(108,99,255,0.08));
}
.stripe-mega-menu__section {
    min-width: 180px;
}
.stripe-mega-menu__section h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.stripe-mega-menu__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.stripe-mega-menu__section li {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}
.stripe-mega-menu__section a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.01rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.18s;
}
.stripe-mega-menu__section a:hover {
    color: var(--primary-color);
}
.stripe-mega-menu__desc {
    font-size: 0.92rem;
    color: #6c757d;
    margin-left: 28px;
    margin-top: 2px;
}
.stripe-navbar__right .btn-main-action {
    padding: 8px 22px;
    font-size: 1rem;
    border-radius: 24px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(108,99,255,0.08);
    background: linear-gradient(90deg, var(--primary-color), var(--hover-primary));
    transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
}
.stripe-navbar__right .btn-main-action:hover {
    background: linear-gradient(90deg, var(--hover-primary), var(--primary-color));
    box-shadow: 0 6px 24px rgba(108,99,255,0.18);
    transform: translateY(-2px) scale(1.04);
}
/* Example icons for mega menu (replace with SVG or font icons as needed) */
.stripe-mega-menu__icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    background: var(--primary-color, #6C63FF);
    border-radius: 6px;
    margin-right: 6px;
    opacity: 0.7;
    transition: transform 0.22s cubic-bezier(.4,1.2,.4,1), box-shadow 0.22s;
    box-shadow: 0 2px 8px rgba(108,99,255,0.08);
    position: relative;
    overflow: hidden;
}
.stripe-mega-menu__icon::after {
    content: '';
    position: absolute;
    left: -40%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,rgba(255,255,255,0.18) 0%,rgba(255,255,255,0.01) 100%);
    transform: skewX(-18deg);
    transition: left 0.4s cubic-bezier(.4,1.2,.4,1);
}
.stripe-mega-menu__section a:hover .stripe-mega-menu__icon {
    transform: scale(1.18) rotate(-8deg);
    box-shadow: 0 4px 16px rgba(108,99,255,0.18);
}
.stripe-mega-menu__section a:hover .stripe-mega-menu__icon::after {
    left: 120%;
}
.icon-product { background: linear-gradient(135deg,#6C63FF,#534CD8); }
.icon-crm { background: linear-gradient(135deg,#FF6B6B,#6C63FF); }
.icon-cms { background: linear-gradient(135deg,#3F3D56,#6C63FF); }
.icon-mobile { background: linear-gradient(135deg,#00b894,#6C63FF); }
.icon-billing { background: linear-gradient(135deg,#f7df1e,#6C63FF); }
.icon-tax { background: linear-gradient(135deg,#e44d26,#6C63FF); }
.icon-analytics { background: linear-gradient(135deg,#3776ab,#6C63FF); }
.icon-api { background: linear-gradient(135deg,#7952b3,#6C63FF); }
.icon-support { background: linear-gradient(135deg,#FF6B6B,#534CD8); }

@media (max-width: 991px) {
    .stripe-navbar__nav {
        gap: 0;
    }
    .stripe-mega-menu {
        min-width: 320px;
        flex-direction: column;
        gap: 18px;
        padding: 18px 12px 12px 12px;
    }
    .stripe-mega-menu__section {
        min-width: 0;
    }
}
@media (max-width: 767px) {
    .stripe-navbar__nav {
        display: none !important;
    }
    .stripe-navbar__right {
        margin-left: auto;
    }
}

/* Subtle fade for nav background on hover */
.stripe-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    pointer-events: none;
    background: linear-gradient(90deg,rgba(108,99,255,0.04) 0%,rgba(255,255,255,0.0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}
.stripe-header:hover::after {
    opacity: 1;
}

/*--------------------------------------------------------------
# Products Page
--------------------------------------------------------------*/
.products-page {
    padding: 80px 0;
}

.products-filters {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.search-box input {
    border-radius: 50px;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
}

.filter-options select {
    border-radius: 50px;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    min-width: 200px;
}

.product-card {
    border-radius: 8px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 0.5rem;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background-color: #f8f9fa;
    padding-top: 100%; /* Square aspect ratio */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 5px;
}

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

.product-details {
    padding: 0.75rem;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: #777;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.product-title {
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    min-height: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
}

.discount-price {
    background: linear-gradient(135deg, #ec4bb0, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    animation: none;
}

.old-price {
    font-size: 0.85rem;
    color: #9e9e9e;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.product-footer {
    display: flex;
    margin-top: auto;
    margin-bottom: 0.25rem;
}

.product-footer .btn {
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    height: 38px; /* Sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: linear-gradient(135deg, #ec4bb0, #6C63FF);
    color: white;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    animation: none;
    display: inline-block;
    width: auto;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
}

/* Trendyol benzeri favori ikonu */
.product-card .fav-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 0.9rem;
    color: #aaa;
    border: none;
    transition: all 0.2s;
    opacity: 0;
}

.product-card:hover .fav-button {
    opacity: 1;
}

.product-card .fav-button:hover {
    color: #ec4bb0;
    transform: scale(1.1);
}

.btn-examine {
    background: linear-gradient(135deg, #ec4bb0, #6C63FF);
    color: white;
    border: none;
    transition: all 0.2s ease;
}

.btn-examine:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    color: white;
}

/* Ürün Grid Düzenlemesi */
#productsGrid {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

#productsGrid > div {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

/*--------------------------------------------------------------
# Product Detail Page
--------------------------------------------------------------*/
.product-detail {
    padding: 80px 0;
}

.product-image-large {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    margin-bottom: 1.5rem;
}

.product-image-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumb-item {
    width: calc(25% - 8px);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.product-info {
    height: 100%;
}

.product-info .product-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333;
}

.product-meta {
    margin-bottom: 1.5rem;
}

.product-meta .badge {
    color: white;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 30px;
}

.product-detail .product-description {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.product-detail .product-features {
    margin-bottom: 1.5rem;
}

.product-detail .product-features h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.product-detail .product-features h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.product-detail .features-list {
    padding-left: 1.5rem;
    list-style-type: none;
}

.product-detail .features-list li {
    padding: 0.5rem 0;
    position: relative;
}

.product-detail .features-list li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.product-detail .product-actions {
    margin-top: 2rem;
}

.product-detail .btn-lg {

    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.product-detail .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-primary));
    border: none;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.product-detail .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

.product-detail .technical-details {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.product-detail .technical-details h4 {
    margin-bottom: 1rem;
    color: #333;
}

.product-detail .similar-products {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.product-detail .similar-products h3 {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.product-detail .similar-products h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateZ(0);
    animation: pulse 2s infinite;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
    }
    
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
} 

/* ===================================
   Legal Pages (Privacy, Terms etc.)
====================================== */
.legal-page .section-header {
    margin-bottom: 40px;
}

.legal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.legal-content p, .legal-content li {
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

.legal-content p strong {
    color: var(--danger-color);
    font-weight: 600;
}

/* Product detail sayfası indirim badge rengi değişimi */
.product-detail .ms-2.badge {
    background: linear-gradient(135deg, #6C63FF, #4BB0EC);
    border: none;
}

/* Product detail sayfası indirim badge rengi değişimi */
.discount-badge-inline {
    background: linear-gradient(135deg, #6C63FF, #4BB0EC);
    border: none;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    white-space: nowrap;
}

/* Ürün detay sayfası için indirim yüzdesi gösterimi */
.product-detail .product-price .ms-2.badge {
    max-width: 60px;
    margin-left: 0.5rem !important;
} 