/* Consolidated theme base styles (moved from inc/style.php) */
/* Ana Stiller */

body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

/* Erişilebilirlik: buton kontrastı ve klavye odak görünürlüğü */
button,
.btn,
input[type="submit"],
input[type="button"] {
    font-weight: 600;
}

button:focus-visible,
.btn:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(15, 23, 42, 0.45);
    outline-offset: 2px;
}

.btn-primary,
.btn-primary:link,
.btn-primary:visited {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #111827;
}

/* Üst Başlık Alanı */
.header-top {
    background-color: var(--light-bg);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
}

.logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.02);
}

/* İletişim Bilgileri Stilleri */
.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
}

.contact-item:hover {
    background-color: color-mix(in srgb, var(--primary-red) 10%, transparent);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--primary-red);
}

.contact-item i {
    color: var(--primary-red);
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item span {
    font-weight: 500;
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d3dae3;
    background: #f8fafc;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.header-social-icon:hover {
    color: #ffffff;
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-1px);
}

.header-contact-icon {
    font-size: 14px;
}

/* Modern Hamburger Menü */
.modern-toggler {
    background: transparent;
    border: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: auto; /* Sağa yaslamak için */
}

.modern-toggler:hover, 
.modern-toggler:focus {
    background-color: rgba(0, 0, 0, 0.05);
    outline: none;
}

.modern-toggler .toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-bg);
    border-radius: 2px;
    transition: var(--transition);
}

.modern-toggler:hover .toggler-icon {
    background-color: var(--primary-red);
}

.modern-toggler:hover .toggler-icon:nth-child(1) {
    transform: translateY(1px);
}

.modern-toggler:hover .toggler-icon:nth-child(3) {
    transform: translateY(-1px);
}

/* Ana İçerik Alanı */
.main-content {
    background-color: var(--gray-bg);
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-color) 100%);
}

/* Desktop Slider Alanı */
.desktop-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container {
    width: 100%;
    position: relative;
}

.slider {
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    min-height: 580px;
    position: relative;
}

.slide.active {
    display: block;
}

.slide-image-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content-col {
    background-color: transparent;
    min-height: 580px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-left: 0;
    margin-right: auto;
    max-width: 500px;
}

.slide-content {
    padding: 60px 50px;
    color: white;
    width: 100%;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-mehr {
    display: inline-block;
    padding: 12px 25px;
    background-color: white;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-mehr:hover {
    background-color: var(--dark-bg);
    color: white;
    transform: translateY(-3px);
}

/* Slider Kontrol Okları */
.slider-arrows {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: auto;
    z-index: 120;
    pointer-events: none;
    display: flex;
    gap: 10px;
}

.slider-arrows .container {
    position: static;
}

.arrow {
    position: static;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: none;
    outline: none;
    user-select: none;
}

.arrow:hover {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

.arrow i {
    color: white;
    font-size: 18px;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-prev {
    left: auto;
}

.arrow-next {
    right: auto;
}

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
    pointer-events: none;
}

.slider-dots {
    display: inline-flex;
    gap: 10px;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    pointer-events: auto;
}

.dot.active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

/* Mobil Slider - Swiper Temelli */
.mobile-slider-wrapper {
    display: none;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.mobile-slider {
    width: 100%;
    height: auto;
}

.mobile-slide {
    width: 100%;
    display: flex !important;
    flex-direction: column;
}

.mobile-slide-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

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

.mobile-slide-content {
    padding: 25px 20px;
    background-color: #fff;
    text-align: center;
}

.mobile-slide-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.mobile-slide-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.mobile-more-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-more-btn:hover {
    background-color: var(--dark-bg);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Swiper Genel Ayarları */
.swiper {
    margin-left: auto;
    margin-right: auto;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #ccc !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-red) !important;
}

/* Mobil Uyumluluk */
@media (max-width: 991.98px) {
    .header-top {
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    
    .logo img {
        max-height: 64px;
        width: auto;
    }
    
    .slider-container {
        min-height: 250px; /* Mobilde daha kısa slider */
    }
    
    .modern-toggler {
        margin-right: 0; /* Sağa tam yaslamak için */
    }
    
    .mega-menu {
        position: static !important;
        transform: none;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 10px 0;
        max-height: none;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
    }

    .mega-grid,
    .products-mega .mega-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mega-product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-mega .mega-col:first-child {
        padding-right: 0;
        border-right: 0;
    }
    
    /* Mobil slider - tamamen yeni tasarım */
    .slide {
        min-height: auto;
        display: none;
        flex-direction: column;
        position: relative;
    }
    
    .slide.active {
        display: flex;
    }
    
    .slider {
        position: relative;
        min-height: 500px;
    }
    
    .slide-image-col {
        position: relative;
        height: 300px;
        width: 100%;
        order: 1;
    }
    
    .slide-content-col {
        min-height: auto;
        max-width: 100%;
        width: 100%;
        position: relative;
        margin: 0;
        background-color: transparent;
        padding: 0;
        order: 2;
    }
    
    .slide-content {
        padding: 25px 20px;
        text-align: center;
    }
    
    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .btn-mehr {
        padding: 10px 20px;
    }
    
    /* Mobil için slider okları */
    .slider-arrows {
        position: absolute;
        bottom: 325px;
        right: 10px;
        top: auto;
        transform: none;
        z-index: 10;
        display: flex;
        gap: 8px;
    }
    
    .arrow {
        width: 38px;
        height: 38px;
    }
    
    .arrow i {
        font-size: 16px;
    }
    
    /* Mobil slider dots */
    .slider-controls {
        bottom: 10px;
        position: absolute;
        z-index: 10;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Masaüstü slider'ı mobilde gizle */
    .desktop-slider {
        display: none;
    }
    
    /* Mobil slider'ı göster */
    .mobile-slider-wrapper {
        display: block;
    }
    
    /* Mobilde gizle veya değiştir */
    .slider {
        min-height: auto;
    }
    
    /* Özellikler alanı mobil düzenlemeler */
    .features-section {
        padding: 50px 0 30px;
    }
    
    .section-title h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .section-title p {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .feature-box {
        padding: 25px 15px;
    }
    
    /* Uzmanlık alanları mobil düzenlemeler */
    .expertise-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .section-intro {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .expertise-item {
        margin-bottom: 40px;
    }
    
    .expertise-content {
        padding: 30px 20px;
    }
    
    .expertise-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .expertise-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .btn-outline-primary {
        padding: 8px 20px;
    }
    
    /* İletişim formu mobil düzenlemeler */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-form-container h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .contact-form .form-control {
        padding: 10px;
    }
    
    .contact-form .btn-submit {
        width: 100%;
        padding: 12px;
    }
    
    .contact-image-container {
        height: 300px;
        margin-top: 30px;
    }
    
    .contact-overlay {
        padding: 20px;
    }
    
    .contact-overlay h3 {
        font-size: 20px;
    }
    
    .social-section {
        padding: 15px 0;
        text-align: center;
    }
    
    .social-text {
        margin-bottom: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .header-top {
        padding: 18px 0;
    }

    .logo img {
        max-height: 58px;
    }
}

/* Çok küçük mobil ekranlar için ek düzenlemeler */
@media (max-width: 576px) {
    .slide-image-col {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slider-arrows {
        bottom: 275px;
        right: 10px;
    }
    
    .mobile-slide-img {
        height: 180px;
    }
    
    .mobile-slide-content {
        padding: 15px;
    }
    
    .mobile-slide-content h3 {
        font-size: 18px;
    }
    
    .mobile-more-btn {
        padding: 8px 20px;
    }
    
    /* Özellikler alanı mobil düzenlemeler */
    .section-title h1 {
        font-size: 22px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .img-svg {
        width: 45px;
    }
    
    .feature-box h3 {
        font-size: 16px;
    }
    
    /* Uzmanlık alanları mobil düzenlemeler */
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-intro {
        font-size: 14px;
    }
    
    .expertise-content h3 {
        font-size: 18px;
    }
    
    .expertise-content p {
        font-size: 14px;
    }
    
    /* İletişim formu mobil düzenlemeler */
    .contact-form-container h2 {
        font-size: 20px;
    }
    
    .contact-form label {
        font-size: 14px;
    }
    
    .contact-form .form-control {
        font-size: 14px;
    }
    
    .contact-image-container {
        height: 250px;
    }
    
    .contact-overlay h3 {
        font-size: 18px;
    }
    
    .contact-overlay p {
        font-size: 13px;
    }
    
    .social-text p {
        font-size: 14px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* Özellikler Bölümü */
.features-section {
    padding: 70px 0 50px;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title p {
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.feature-boxes {
    margin-top: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(233, 70, 66, 0.04);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: rgba(233, 70, 66, 0.1);
    transform: scale(1.1);
}

.img-svg {
    width: 60px;
    height: auto;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    transition: color 0.3s ease;
}

.feature-box:hover h3 {
    color: var(--primary-red);
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Uzmanlık Alanları Bölümü */
.expertise-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.expertise-item {
    margin-bottom: 70px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.expertise-item:last-child {
    margin-bottom: 0;
}

.expertise-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

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

.expertise-content {
    padding: 40px 30px;
}

.expertise-content h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.expertise-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.expertise-content .link-primary {
    color: var(--primary-red) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.expertise-content .link-primary:hover {
    color: #d23c38 !important;
    text-decoration: none;
}

.btn-outline-primary,
.btn-outline-primary:link,
.btn-outline-primary:visited {
    color: var(--primary-red);
    background-color: transparent;
    border: 2px solid var(--primary-red);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(233, 70, 66, 0.2);
}

.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible,
.btn-outline-primary:focus-within {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem rgba(233, 70, 66, 0.25) !important;
    border-color: var(--primary-red) !important;
    color: var(--primary-red) !important;
    background-color: rgba(233, 70, 66, 0.05) !important;
}

.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 70, 66, 0.25) !important;
}

.expertise-extra-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.expertise-extra-info p {
    margin-bottom: 15px;
}

/* İletişim Formu */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-form-container {
    padding: 40px;
    background-color: #fff;
}

.contact-form-container h2 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(233, 70, 66, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-submit {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #d23c38;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 70, 66, 0.2);
}

.contact-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    color: white;
}

.contact-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-overlay p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Sosyal Medya Bölümü */
.social-section {
    padding: 20px 0;
    background-color: var(--dark-bg);
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-text p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Footer Bölümü */
.main-footer {
    background-color: #222;
    color: #ccc;
    font-size: 15px;
}

.footer-main {
    padding: 24px 0 34px;
    position: relative;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 45px;
    filter: none;
}

.footer-about p {
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-widget {
    margin-bottom: 25px;
}

.footer-widget-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li:hover {
    padding-left: 10px;
}

.footer-links li a:hover {
    color: var(--primary-red);
}

.footer-contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.footer-contact-info i {
    color: var(--primary-red);
    font-size: 16px;
    min-width: 20px;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright p {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
    opacity: 1;
}

/* Anasayfa Urunler */
.products-home {
    background:
        radial-gradient(circle at 0% 100%, rgba(225, 29, 72, 0.05), transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(15, 23, 42, 0.06), transparent 52%),
        #f7f9fc !important;
    padding-top: 84px !important;
    padding-bottom: 84px !important;
}

.products-home-head .products-home-kicker {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(193, 18, 31, 0.1);
    color: #9f0f1a;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.products-home-head h2 {
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.products-home-head p {
    max-width: 760px;
    margin: 0 auto;
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.product-home-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-home-card:hover {
    transform: translateY(-6px);
    border-color: #fecdd3;
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.14);
}

.product-home-media-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.product-home-media-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.23), rgba(15, 23, 42, 0));
    opacity: .72;
    transition: opacity .25s ease;
}

.product-home-card:hover .product-home-media-link::after {
    opacity: .4;
}

.product-home-media {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    transition: transform .4s ease;
}

.product-home-card:hover .product-home-media {
    transform: scale(1.06);
}

.product-home-body {
    padding: 18px 18px 16px;
    min-height: 196px;
}

.product-home-title {
    font-size: 19px;
    line-height: 1.34;
    font-weight: 800;
    margin: 0 0 10px;
    color: #0f172a;
}

.product-home-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid #c1121f;
    color: #c1121f;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: all .22s ease;
    background: #fff;
}

.product-home-btn:hover {
    color: #fff;
    background: #c1121f;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(193, 18, 31, 0.22);
}

.product-home-btn i {
    font-size: 12px;
}

.home-page .expertise-section {
    background:
        radial-gradient(circle at 100% 20%, rgba(193, 18, 31, 0.05), transparent 42%),
        radial-gradient(circle at 0% 80%, rgba(15, 23, 42, 0.06), transparent 45%),
        #f7f9fc;
    padding: 86px 0;
}

.home-page .section-header {
    margin-bottom: 48px;
}

.home-page .expertise-head-kicker {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(193, 18, 31, 0.1);
    color: #9f0f1a;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-page .section-header h2 {
    font-size: clamp(30px, 2.5vw, 40px);
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.home-page .section-intro {
    max-width: 840px;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

.home-page .expertise-item {
    margin-bottom: 26px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
    overflow: hidden;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-page .expertise-item:hover {
    transform: translateY(-5px);
    border-color: #fecdd3;
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.14);
}

.home-page .expertise-image {
    border-radius: 0;
}

.home-page .expertise-image img {
    min-height: 320px;
}

.home-page .expertise-content {
    padding: 34px 32px;
}

.home-page .expertise-content h3 {
    color: #0f172a;
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 800;
    line-height: 1.24;
    margin-bottom: 14px;
}

.home-page .expertise-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

.home-page .expertise-content .btn-outline-primary {
    border-width: 1px;
    border-color: #c1121f;
    color: #c1121f !important;
    border-radius: 12px;
    min-height: 46px;
    padding: 11px 22px;
    font-weight: 700;
}

.home-page .expertise-content .btn-outline-primary:hover {
    background: #c1121f !important;
    border-color: #c1121f !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(193, 18, 31, 0.22);
}

.home-page .quick-contact-cta-card {
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.1) !important;
    border-radius: 20px !important;
}

.home-page .contact-section {
    padding: 86px 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(193, 18, 31, 0.05), transparent 40%),
        #f7f9fc;
}

.home-page .contact-form-container,
.home-page .contact-image-container {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
    background: #fff;
}

.home-page .contact-form-container {
    padding: 34px;
}

.home-page .contact-form-container h2 {
    color: #0f172a;
    font-weight: 800;
}

.home-page .contact-form .form-control {
    border-radius: 12px;
    border-color: #d5dde8;
    min-height: 46px;
}

.home-page .contact-form textarea.form-control {
    min-height: 140px;
}

.home-page .contact-form .btn-submit {
    border-radius: 12px;
    min-height: 48px;
    font-weight: 700;
}

.home-page {
    overflow-x: hidden;
}

.home-page .contact-section .row {
    --bs-gutter-x: 0;
}

.home-page .contact-image {
    display: block;
}

/* Mobil Footer */
@media (max-width: 992px) {
    .products-home {
        padding-top: 58px !important;
        padding-bottom: 60px !important;
    }

    .products-home-head p {
        font-size: 15px;
    }

    .product-home-title {
        font-size: 18px;
    }

    .product-home-body {
        min-height: auto;
    }

    .home-page .expertise-section,
    .home-page .contact-section {
        padding: 58px 0;
    }

    .home-page .section-intro {
        font-size: 15px;
    }

    .home-page .expertise-content {
        padding: 24px 22px;
    }

    .home-page .expertise-content h3 {
        font-size: 26px;
    }

    .home-page .expertise-image img {
        min-height: 250px;
    }

    .home-page .contact-form-container {
        padding: 24px;
    }

    .footer-main {
        padding: 20px 0 26px;
    }
    
    .footer-widget-title {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products-home-head h2 {
        font-size: 30px;
    }

    .product-home-card {
        border-radius: 14px;
    }

    .product-home-body {
        padding: 16px 16px 14px;
    }

    .product-home-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .product-home-text {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .home-page .expertise-head-kicker {
        margin-bottom: 10px;
    }

    .home-page .section-header h2 {
        font-size: 30px;
    }

    .home-page .expertise-item,
    .home-page .contact-form-container,
    .home-page .contact-image-container {
        border-radius: 14px;
    }

    .home-page .expertise-content {
        padding: 18px 16px;
    }

    .home-page .expertise-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .home-page .expertise-content p {
        font-size: 14px;
    }

    .footer-main {
        padding: 16px 0 18px;
    }
    
    .footer-widget-title {
        font-size: 16px;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
    
    .footer-bottom-links a {
        font-size: 13px;
    }
}

/* ===============================
   Premium Legal Design System
   =============================== */
:root {
    --color-navy: #0b1f3f;
    --color-navy-soft: #12315f;
    --color-gold: #c7a55b;
    --color-gold-muted: #e7d8b4;
    --color-bg: #f5f6f8;
    --color-surface: #ffffff;
    --color-text: #1f2c3d;
    --color-text-muted: #5a6777;
    --color-border: #d8deea;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow-soft: 0 12px 28px rgba(9, 27, 55, 0.08);
    --shadow-raise: 0 16px 36px rgba(9, 27, 55, 0.14);
    --container-legal: min(1240px, calc(100vw - 40px));
    --section-space: clamp(54px, 7vw, 88px);
}

html,
body {
    overflow-x: clip;
    background: var(--color-bg);
    color: var(--color-text);
}

.container {
    width: var(--container-legal);
    max-width: var(--container-legal);
}

section {
    position: relative;
}

.btn-legal {
    --btn-elev: 0 8px 18px rgba(9, 27, 55, 0.14);
    --btn-elev-hover: 0 12px 22px rgba(8, 22, 44, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    box-shadow: var(--btn-elev);
    transition: all 0.26s ease;
    text-decoration: none;
}

.btn-legal::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -130%;
    width: 44%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 48%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-18deg);
    transition: left 0.42s ease;
    pointer-events: none;
}

.btn-legal-primary {
    --btn-elev: 0 10px 20px rgba(120, 89, 34, 0.26);
    --btn-elev-hover: 0 14px 28px rgba(110, 79, 28, 0.34);
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #132238;
}

.btn-legal-primary:hover {
    background: #d2b26f;
    border-color: #d2b26f;
    color: #132238;
    transform: translateY(-1px) scale(1.01);
    box-shadow: var(--btn-elev-hover);
}

.btn-legal-secondary {
    --btn-elev: 0 8px 16px rgba(8, 22, 44, 0.2);
    --btn-elev-hover: 0 12px 22px rgba(8, 22, 44, 0.26);
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #ffffff;
}

.btn-legal-secondary:hover {
    background: var(--color-navy-soft);
    border-color: var(--color-navy-soft);
    color: #ffffff;
    transform: translateY(-1px) scale(1.01);
    box-shadow: var(--btn-elev-hover);
}

.btn-legal-outline {
    --btn-elev: 0 6px 14px rgba(8, 22, 44, 0.12);
    --btn-elev-hover: 0 10px 18px rgba(8, 22, 44, 0.18);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.44);
    color: #ffffff;
}

.btn-legal-outline:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-navy);
    box-shadow: var(--btn-elev-hover);
}

.btn-legal:hover::before {
    left: 130%;
}

.card-legal {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.card-legal:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--color-gold) 56%, var(--color-border));
    box-shadow: var(--shadow-raise);
}

@media (max-width: 768px) {
    :root {
        --container-legal: min(1240px, calc(100vw - 24px));
    }
}
