* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* HEADER */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px 20px;
}

.header-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
    height: 62px;
}

.search-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.search-icon:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.search-icon svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s;
}

.search-icon:hover svg {
    stroke: #28a745;
}

.logo-section {
    flex: 0 0 auto;
    text-align: left;
    margin-left: 0;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-partner {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

.btn-partner:hover {
    background-color: #f5f5f5;
}

.btn-insured {
    background-color: #ff0000;
    color: #ffffff;
}

.btn-insured:hover {
    background-color: #cc0000;
}

.btn-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1e3a5f;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav {
    border-top: 1px solid #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li > a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 15px 17px;
    display: block;
    position: relative;
    font-size: 16px;
}

nav ul li > a:hover {
    color: #dc143c;
}

nav ul li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #dc143c;
    transition: width 0.3s;
}

nav ul li:hover > a::after {
    width: 100%;
}

/* Dropdown Menu */
nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    margin-top: 3px;
}

nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav ul li ul li {
    width: 100%;
}

nav ul li ul li a {
    color: #333;
    padding: 12px 25px;
    white-space: nowrap;
}

nav ul li ul li a:hover {
    background-color: #f5f5f5;
    color: #dc143c;
}

nav ul li ul li a::after {
    display: none;
}

/* SLIDER */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: #ff0000;
    max-width: 600px;
    padding: 20px 0;
    margin-left: 280px;
}

.slide-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    white-space: nowrap;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #1e3a5f;
    color: white;
    padding: 14px 32px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background-color: #0f2442;
}

.slider-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(85, 85, 85, 0.3);
}

.slider-nav-arrows:hover {
    background-color: #ffffff;
    border-color: #555;
}

.slider-nav-arrows svg {
    width: 20px;
    height: 20px;
    stroke: #555;
    fill: none;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #1e3a5f;
}

/* Slider Content Section - Desktop'ta gizle */
.slider-content-section {
    display: none;
}

/* PLACEHOLDER GÖRSELLER */
.slide-1 {
    background-color: #f0f0f0;
    background-image: url('images/slider1.jpg');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background-color: #f0f0f0;
    background-image: url('images/slider2.jpg');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background-color: #f0f0f0;
    background-image: url('images/slider3.jpg');
    background-size: cover;
    background-position: center;
}

/* BODY CONTENT */
.body-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1e3a5f;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #dc143c;
}

/* ÜRÜNLERİMİZ SLIDER */
.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px;
}

.products-title {
    text-align: center;
    font-size: 36px;
    color: #1e3a5f;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.products-slider-container {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.products-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 250px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image a:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.product-card h3 a {
    transition: color 0.3s ease;
}

.product-card h3 a:hover {
    color: #dc143c;
}

.product-card p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-product {
    background-color: white;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.btn-product:hover {
    background-color: #1e3a5f;
    color: white;
    border-color: #1e3a5f;
}

.products-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1e3a5f;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.products-nav-arrow:hover {
    border-color: #0f2442;
    background-color: #f5f5f5;
}

.products-nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #1e3a5f;
}

.products-nav-arrow:hover svg {
    stroke: #0f2442;
}

.products-prev {
    left: 0;
}

.products-next {
    right: 0;
}

.products-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.products-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #c5d4e8;
    cursor: pointer;
    transition: background-color 0.3s;
}

.products-dot.active {
    background-color: #1e3a5f;
}

/* NAKLIYAT SİGORTAM BANNER */
.about-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-banner {
    background: #ff0000;
    border-radius: 15px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.about-content {
    flex: 1;
    color: white;
    z-index: 1;
}

.about-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
}

.about-button {
    background-color: #ffffff;
    color: #000000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    z-index: 1;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ANLAŞMALI SİGORTA ŞİRKETLERİ */
.partners-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.partners-title {
    text-align: center;
    font-size: 32px;
    color: #1e3a5f;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.partners-slider-container {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.partners-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.partner-logo {
    flex: 0 0 calc(16.666% - 25px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s;
    cursor: pointer;
    min-width: 180px;
}

.partner-logo:hover {
    border-color: #28a745;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partners-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #555;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.partners-nav-arrow:hover {
    border-color: #333;
    background-color: #f5f5f5;
}

.partners-nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #555;
}

.partners-nav-arrow:hover svg {
    stroke: #333;
}

.partners-prev {
    left: 0;
}

.partners-next {
    right: 0;
}

/* BLOG SECTION */
.blog-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.blog-title {
    text-align: center;
    font-size: 36px;
    color: #1e3a5f;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #dc143c;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.2);
}

.blog-image {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 20px;
    color: #1e3a5f;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.blog-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-link {
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    color: #ff0000;
}

/* Blog kartı görsel ve başlık linkleri */
.blog-image a {
    display: block;
    transition: opacity 0.3s ease;
}

.blog-image a:hover {
    opacity: 0.9;
}

.blog-content h3 a {
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #dc143c;
}

.features {
    background-color: #f5f7fa;
    padding: 20px 20px;
    margin: 22px 0;
    height: 300px;
    overflow: visible;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features .section-title {
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-size: 32px;
}

.features .section-title::after {
    height: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
}

.feature-number {
    font-size: 42px;
    font-weight: bold;
    color: #dc143c;
    margin-bottom: 8px;
    line-height: 1;
}

.feature-title {
    font-size: 18px;
    color: #1e3a5f;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* FOOTER */
footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    background-color: #f5f5f5;
    padding: 40px 20px 100px;
    position: relative;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 40px 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact-content {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 400;
}

.footer-contact-value {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.2;
}

.footer-contact-value:hover {
    color: #0f2442;
}

.footer-contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: #555;
}

.footer-phone {
    flex-direction: row;
}

.footer-form-link {
    flex-direction: row;
}

.footer-contact-value:hover {
    color: #000000;
}

.footer-links {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-list li {
    padding: 0 15px;
    border-right: 1px solid #e0e0e0;
    position: relative;
}

.footer-links-list li:last-child {
    border-right: none;
}

.footer-links-list li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links-list li a:hover {
    color: #1e3a5f;
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-label {
    font-size: 14px;
    color: #666;
    margin-right: 5px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social-icon:hover {
    color: #28a745;
    transform: translateY(-2px);
}

/* Floating Buttons */
.footer-floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 999;
    pointer-events: none;
}

.footer-floating-btn {
    pointer-events: all;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.footer-floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.footer-floating-btn.primary {
    background-color: #28a745;
    color: white;
}

.footer-floating-btn.secondary {
    background-color: white;
    color: #28a745;
    border: 2px solid #28a745;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }

    .partner-logo {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }

    .slide-content {
        max-width: 70%;
    }

    .about-banner {
        padding: 50px 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-contact-value {
        font-size: 24px;
    }

    .footer-contact-icon {
        width: 50px;
        height: 50px;
    }

    .footer-links-list {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links-list li {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 10px 0;
    }

    .footer-links-list li:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-floating-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .footer-floating-btn {
        width: 100%;
        justify-content: center;
    }

    .about-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .about-button {
        width: 100%;
        justify-content: center;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        max-width: 100%;
    }

    .partners-section {
        margin: 40px auto;
    }

    .partners-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .partners-slider-container {
        padding: 0 50px;
    }

    .partner-logo {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        height: 100px;
        padding: 20px;
    }

    .partners-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .header-top-bar {
        display: grid;
        grid-template-columns: 1fr 40px;
        align-items: center;
        position: relative;
        gap: 15px;
        padding: 10px 15px;
        height: 60px;
    }

    .logo-section {
        grid-column: 1;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-self: center;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    .logo-section .logo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .logo-section .logo img {
        max-height: 40px;
        height: auto;
        width: auto;
        margin: 0;
        padding: 0;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        grid-column: 2;
        justify-self: end;
        align-self: center;
        z-index: 1001;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        margin: 0;
        padding: 8px;
        box-sizing: border-box;
    }

    .mobile-menu-toggle span {
        margin: 0;
    }

    .header-container {
        position: relative;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff;
        border-top: none;
        border-right: 1px solid #e0e0e0;
        z-index: 1000;
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        padding-top: 60px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
        border-right: none;
    }

    nav ul li > a {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    nav ul li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f9f9f9;
        margin-top: 0;
        display: none;
        width: 100%;
        padding: 0;
    }

    nav ul li ul li a {
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 40px;
    }

    nav ul li.active > ul {
        display: flex;
    }

    /* Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .slider-container {
        height: auto;
        position: relative;
    }

    .slide {
        height: 350px;
    }

    .slide-content {
        display: none;
    }

    /* Slider altı içerik bölümü - Mobilde göster */
    .slider-content-section {
        display: block;
        background-color: #ffffff;
        padding: 30px 20px;
        text-align: center;
    }

    .slider-content-section h2 {
        font-size: 24px;
        color: #1e3a5f;
        margin-bottom: 15px;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
    }

    .slider-content-section p {
        font-size: 14px;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .slider-content-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .slider-content-buttons .btn-primary {
        flex: 1;
        min-width: 140px;
        background-color: #1e3a5f;
        text-align: center;
        font-size: 14px;
        padding: 12px 20px;
    }

    .slider-content-buttons .btn-primary:hover {
        background-color: #0f2442;
    }

    .products-slider-container {
        padding: 0 50px;
    }

    .product-card {
        min-width: 100%;
        margin-right: 0;
    }

    .products-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .products-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .features {
        height: auto;
        padding: 30px 20px;
    }

    .features .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .feature-number {
        font-size: 32px;
    }

    .feature-title {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .slider-nav-arrows {
        width: 40px;
        height: 40px;
        border: 2px solid #28a745;
        background-color: #ffffff;
    }

    .slider-nav-arrows svg {
        stroke: #28a745;
    }

    .slider-nav-arrows:hover {
        border-color: #218838;
        background-color: #ffffff;
    }

    .slider-nav-arrows:hover svg {
        stroke: #218838;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Scroll Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-up.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Delay classes for staggered animations */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Hakkımızda Sayfası Stilleri */
.page-banner {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2442 100%);
    /* Görsel kullanmak için: background-image: url('images/banner-hakkimizda.jpg'); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.7);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-content {
    text-align: center;
    color: #ffffff;
}

.page-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-content-wrapper {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hakkımızda sayfası için container genişliği - sidebar olan sayfalar için */
.page-layout:not(.page-layout-full) {
    max-width: 1400px;
}

.page-content-wrapper .container {
    max-width: 1400px;
}

.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar yoksa tek kolonlu yap */
.page-layout:not(:has(.page-sidebar)) {
    grid-template-columns: 1fr;
}

/* Fallback for browsers that don't support :has() */
.page-layout.no-sidebar {
    grid-template-columns: 1fr;
}

/* Sidebar Menu */
.page-sidebar {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.sidebar-menu {
    list-style: none;
    padding: 30px 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu li a {
    display: block;
    padding: 15px 30px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 0;
}

.sidebar-menu li a:hover {
    background-color: #f8f9fa;
    color: #1e3a5f;
    padding-left: 30px;
}

.sidebar-menu li.active a {
    background-color: #1e3a5f;
    color: #ffffff;
}

.sidebar-menu li.active a:hover {
    background-color: #1e3a5f;
    color: #ffffff;
}

/* Main Content Area */
.page-main-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Sidebar yoksa içeriği ortala */
.page-layout.no-sidebar .page-main-content {
    margin: 0 auto;
    max-width: 1400px;
}

.content-area h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1e3a5f;
}

.content-area h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1e3a5f;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-area h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-area p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 25px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.content-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    border-bottom: 1px solid #e9ecef;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e3a5f;
    font-weight: bold;
    font-size: 20px;
}

.content-list li strong {
    color: #1e3a5f;
    font-weight: 600;
}

.content-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e3a5f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    color: #1e3a5f;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-item p {
    margin-bottom: 0;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-sidebar {
        position: static;
    }

    .sidebar-menu {
        display: block;
    }

    .sidebar-menu li {
        white-space: normal;
        border-bottom: 1px solid #e9ecef;
    }

    .sidebar-menu li:last-child {
        border-bottom: none;
    }

    .sidebar-menu li a {
        padding: 15px 30px;
        border-left: 3px solid transparent;
    }

    .sidebar-menu li a:hover,
    .sidebar-menu li.active a {
        border-left-color: #1e3a5f;
        padding-left: 30px;
    }

    .content-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 200px;
        margin-top: 70px;
    }

    .page-banner-content h1 {
        font-size: 32px;
    }

    .page-content-wrapper {
        padding: 40px 0;
    }

    .page-main-content {
        padding: 30px 20px;
    }

    .content-area h2 {
        font-size: 28px;
    }

    .content-area h3 {
        font-size: 24px;
    }
}

/* Ürünler Sayfası Grid Layout */
.page-layout-full {
    grid-template-columns: 1fr !important;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.products-page-content {
    width: 100%;
    max-width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.products-grid .product-card {
    flex: none;
    min-width: auto;
    width: 100%;
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Sayfası */
.blog-page-content {
    width: 100%;
    max-width: 100%;
}

.blog-page-content .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 968px) {
    .blog-page-content .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page-content .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    margin-bottom: 60px;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1e3a5f;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e3a5f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.contact-details a {
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #0f2442;
    text-decoration: underline;
}

/* İletişim Formu */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e3a5f;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0f2442;
}

/* Bölgeler Grid */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.region-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1e3a5f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.region-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.region-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.region-info p:last-child {
    margin-bottom: 0;
}

.region-info strong {
    color: #333333;
    font-weight: 600;
}

.region-info a {
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.region-info a:hover {
    color: #0f2442;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }

    .contact-section h2 {
        font-size: 28px;
    }
}

/* SSS Sayfası Accordion Stilleri */
.faq-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 40px;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #1e3a5f;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1e3a5f;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-item.active .faq-question {
    background-color: #1e3a5f;
    color: #ffffff;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: currentColor;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* Abonman Soru Formu Stilleri */
.abonman-form {
    margin-top: 30px;
}

.form-section {
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.form-section-header {
    background-color: #1e3a5f;
    padding: 15px 25px;
}

.form-section-header h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.form-section-note {
    padding: 15px 25px;
    margin: 0;
    font-size: 14px;
    color: #666666;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.form-row {
    padding: 20px 25px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-row:last-child {
    padding-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.ek-teminat-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    color: #333333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a5f;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Montserrat', sans-serif;
}

.date-input-short {
    width: auto !important;
    max-width: 250px;
    min-width: 200px;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.radio-group-column,
.checkbox-group-column {
    flex-direction: column;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333333;
    margin-bottom: 0;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #1e3a5f;
    flex-shrink: 0;
}

.radio-label span,
.checkbox-label span {
    flex: 1;
}

.important-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #1e3a5f;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.form-submit {
    margin-top: 40px;
    text-align: center;
}

.form-submit .btn-submit {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 15px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit .btn-submit:hover {
    background-color: #0f2442;
}

/* CMR Form Tables */
.ciro-dagilim-table,
.arac-bilgileri-table,
.mal-cinsi-table,
.hasar-gecmis-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.ciro-dagilim-table th,
.ciro-dagilim-table td,
.arac-bilgileri-table th,
.arac-bilgileri-table td,
.mal-cinsi-table th,
.mal-cinsi-table td,
.hasar-gecmis-table th,
.hasar-gecmis-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e9ecef;
}

.ciro-dagilim-table th,
.arac-bilgileri-table th,
.mal-cinsi-table th,
.hasar-gecmis-table th {
    background-color: #1e3a5f;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.ciro-dagilim-table td,
.arac-bilgileri-table td,
.mal-cinsi-table td,
.hasar-gecmis-table td {
    background-color: #ffffff;
}

.ciro-dagilim-table input,
.arac-bilgileri-table input,
.mal-cinsi-table input,
.hasar-gecmis-table input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.ciro-dagilim-table input:focus,
.arac-bilgileri-table input:focus,
.mal-cinsi-table input:focus,
.hasar-gecmis-table input:focus {
    outline: none;
    border-color: #1e3a5f;
}

.btn-add-row {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #1e3a5f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-add-row:hover {
    background-color: #0f2442;
}

@media (max-width: 768px) {
    .form-section-header h2 {
        font-size: 16px;
    }

    .form-row {
        padding: 15px 20px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .ciro-dagilim-table,
    .arac-bilgileri-table,
    .mal-cinsi-table,
    .hasar-gecmis-table {
        font-size: 12px;
    }

    .ciro-dagilim-table th,
    .ciro-dagilim-table td,
    .arac-bilgileri-table th,
    .arac-bilgileri-table td,
    .mal-cinsi-table th,
    .mal-cinsi-table td,
    .hasar-gecmis-table th,
    .hasar-gecmis-table td {
        padding: 8px;
    }
}


/* Popup Modal Styles */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 9998;
}

.popup-container {
    position: relative;
    max-width: 550px;
    max-height: 550px;
    width: auto;
    height: auto;
    z-index: 10000;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    animation: popupFadeIn 0.3s ease-out;
    display: block;
    margin: 0;
    flex-shrink: 0;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    font-size: 28px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.popup-close:hover {
    background: #f5f8fa;
    border-color: #009ef7;
    color: #009ef7;
    transform: rotate(90deg);
}

.popup-close span {
    line-height: 1;
}

.popup-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.popup-image {
    max-width: 550px;
    max-height: 550px;
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .popup-container {
        max-width: 90%;
        max-height: 550px;
        padding: 0;
    }

    .popup-close {
        width: 35px;
        height: 35px;
        top: -12px;
        right: -12px;
        font-size: 24px;
    }

    .popup-image {
        max-width: 100%;
        max-height: 550px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        max-width: 95%;
        max-height: 550px;
        padding: 0;
    }

    .popup-close {
        width: 30px;
        height: 30px;
        top: -10px;
        right: -10px;
        font-size: 20px;
    }

    .popup-image {
        max-width: 100%;
        max-height: 550px;
    }
}
