/* Hakkımızda Page Styles */

/* Breadcrumb → assets/css/breadcrumb.css */

.hakkimizda-main .container {
    max-width: var(--container-max, 1600px);
    margin: 0 auto;
    padding-left: var(--container-padding, clamp(12px, 2.5vw, 40px));
    padding-right: var(--container-padding, clamp(12px, 2.5vw, 40px));
    box-sizing: border-box;
    width: 100%;
}

/* Page Layout */
.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 10px;
}

/* Sidebar Menu */
.sidebar-menu {
    border-radius: 4px !important;
    padding: 20px;
    border: none;
    box-shadow: none;
    height: fit-content;
    position: sticky;
    top: 20px;
    background: var(--surface-card, #14151a);
    border: 1px solid var(--header-strip-border, #2d3139);
}

/* Light mode sidebar */
.light-mode .sidebar-menu {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px 10px 35px;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 10px 10px 0;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: -20px;
    margin-right: 15px;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #4a9eff;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 48%, 100% 52%, 0 100%);
}

.menu-item.active::before {
    width: 15px;
}

.menu-item span {
    transition: none;
    color: inherit;
}

.menu-item:hover span {
    transform: none;
}

.menu-item:hover {
    background: rgba(74, 158, 255, 0.1);
    color: #4a9eff !important;
}

.menu-item.active {
    background: rgba(74, 158, 255, 0.15);
    color: #4a9eff !important;
    font-weight: 600;
}

.menu-item.active span {
    transform: none;
}

/* Light mode menu items */
.light-mode .menu-item {
    color: #333 !important;
    background: rgba(0, 0, 0, 0.05);
}

.light-mode .menu-item:hover {
    background: rgba(74, 158, 255, 0.1);
    color: #4a9eff !important;
}

.light-mode .menu-item.active {
    background: rgba(74, 158, 255, 0.15);
    color: #4a9eff !important;
}

.menu-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.menu-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Content Area */
.content-area {
    min-width: 0;
    margin-left: 10px;
}

/* Hero Section - Metin solda, görsel sağda olacak şekilde güncellendi */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 250px; /* Metin 1. sütunda (solda), Görsel 2. sütunda (sağda) */
    gap: 20px;
    align-items: center;
    justify-items: start;
    margin-bottom: 0;
    padding: 30px;
    background: var(--surface-card, #14151a);
    border-radius: 4px 4px 0 0 !important;
    border: 1px solid var(--header-strip-border, #2d3139);
    border-bottom: none;
    min-height: 300px;
}

/* Light mode hero section */
.light-mode .hero-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-bottom: none;
}

/* hero-section.reverse kaldırıldı, artık bu tek tanım yeterli */

.hero-content {
    max-width: 100%;
    text-align: left;
    justify-self: start;
    width: 100%;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px; /* Azaltıldı */
    font-weight: 700;
}

.hero-content p {
    color: #b0b8c8;
    font-size: 0.95rem;
    line-height: 1.6; /* Azaltıldı */
    margin-bottom: 10px; /* Azaltıldı */
}

/* Light mode hero content */
.light-mode .hero-content h2 {
    color: #333;
}

.light-mode .hero-content p {
    color: #666;
}

/* Section Card */
.section-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    align-items: center;
    justify-items: start;
    margin-bottom: 0;
    padding: 30px;
    background: var(--surface-card, #14151a);
    border-radius: 0;
    border: 1px solid var(--header-strip-border, #2d3139);
    border-top: 1px solid #4a4a4a;
    border-bottom: none;
    min-height: 300px;
}

.section-card:last-child {
    border-radius: 0 0 4px 4px !important;
    border-bottom: 1px solid #3a3a3a;
    margin-bottom: 20px;
}

/* Light mode section card */
.light-mode .section-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-top: 1px solid #d6d9dc;
    border-bottom: none;
}

.light-mode .section-card:last-child {
    border-bottom: 1px solid #e9ecef;
}

.section-card.reverse {
    grid-template-columns: 1fr 250px;
}

.section-card.reverse .section-content {
    order: 1;
}

.section-card.reverse .section-illustration {
    order: 2;
}

.section-content {
    max-width: 100%;
    text-align: left;
    justify-self: start;
    width: 100%;
}

.section-content h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px; /* Azaltıldı */
    font-weight: 700;
}

.section-content p {
    color: #b0b8c8;
    font-size: 0.95rem;
    line-height: 1.6; /* Azaltıldı */
    margin-bottom: 10px; /* Azaltıldı */
}

/* Light mode section content */
.light-mode .section-content h2 {
    color: #333;
}

.light-mode .section-content p {
    color: #666;
}

.section-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image {
    max-width: 100%;
    height: auto;
    width: 250px;
    object-fit: contain;
}

/* Light Mode Styles removed */

/* Responsive */
@media (max-width: 768px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-menu {
        position: relative;
        top: 0;
        order: -1;
        margin-bottom: 30px;
    }

    .hero-section,
    .section-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-card.reverse .section-content,
    .section-card.reverse .section-illustration {
        order: unset;
    }
}

@media (max-width: 768px) {
    .hero-content h2,
    .section-content h2 {
        font-size: 1.4rem;
    }

    .hero-content p,
    .section-content p {
        font-size: 0.9rem;
    }

    .hero-section,
    .section-card {
        padding: 25px;
    }

    .section-image {
        width: 250px;
    }
}

/* İptal ve İade Content Styles */
.iptal-iade-content {
    background: var(--surface-card, #14151a);
    border-radius: 4px !important;
    border: 1px solid var(--header-strip-border, #2d3139);
    padding: 40px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Light mode iptal iade content */
.light-mode .iptal-iade-content {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.iptal-iade-content h3 {
    font-size: 1.1rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

.iptal-iade-content p {
    color: #b0b8c8;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.iptal-iade-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.iptal-iade-content ul li {
    color: #b0b8c8;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Light mode iptal iade text */
.light-mode .iptal-iade-content h3 {
    color: #333;
}

.light-mode .iptal-iade-content p,
.light-mode .iptal-iade-content ul li {
    color: #666;
}

.iptal-iade-content a {
    color: #4a9eff;
    text-decoration: none;
}

.iptal-iade-content a:hover {
    text-decoration: underline;
}

/* Light Mode removed */
/* Footer positioning */
body {
    margin: 0;
    padding: 0;
}

.hakkimizda-main {
    margin-bottom: 0;
}

.hakkimizda-main .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Remove any extra spacing at the bottom */
.page-layout {
    margin-bottom: 0;
}

.section-card:last-child {
    margin-bottom: 0;
}

.iptal-iade-content {
    margin-bottom: 30px;
}
/* KVKK Form Light Mode Styles */
.light-mode .kvkk-form {
    background: rgba(0,0,0,0.05) !important;
}

.light-mode .kvkk-form label {
    color: #333 !important;
}

.light-mode .kvkk-form input,
.light-mode .kvkk-form select,
.light-mode .kvkk-form textarea {
    background: #fff !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

.light-mode .kvkk-form button {
    background: #4a9eff !important;
}

.light-mode .kvkk-form button:hover {
    background: #3a8eef !important;
}
/* Güvenli Alışveriş specific styles */
.iptal-iade-content h3 {
    font-size: 0.9rem !important;
    margin-top: 15px !important;
    margin-bottom: 5px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.iptal-iade-content p {
    font-size: 0.8rem !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.iptal-iade-content ul li {
    font-size: 0.8rem !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

/* Two column layout for content sections */
.security-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.security-section {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.light-mode .security-section {
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.1);
}

.security-section h3 {
    font-size: 0.9rem !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.security-section p,
.security-section ul li {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .security-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* Light mode heading colors */
.light-mode .security-section h3 {
    color: #333 !important;
}

.light-mode .iptal-iade-content h3 {
    color: #333 !important;
}
/* Main Content */
.hakkimizda-main {
    padding: 20px 0 30px 0;
    min-height: calc(100vh - 200px);
}