/**
 * style.css — Aly Petshop
 * Ana stil dosyası: Header, Off-Canvas Menü, Footer, Bileşenler, Responsive
 * Tasarım dili, renkler ve fontlar korunmuştur.
 * Versiyon: v12 — Şubat 2026
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Değişkenler)
   ============================================================ */
:root {
    --primary-color: #4b8ef1;
    --secondary-color: #2b2d42;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --text-dark: #2b2d42;
    --text-muted: #6c757d;
    --header-height: 64px;
    --offcanvas-width: 280px;
    --transition: 0.3s ease-in-out;
}

/* ============================================================
   2. TEMEL RESET & GENEL
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    font-display: swap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================================
   3. HEADER — Kompakt, flex hizalama
   ============================================================ */
.header-area {
    background: #fff;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
}

/* Sticky header — scroll sonrası */
.header-area.header-sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-area .container {
    padding: 0 20px;
}

/* Ana nav satırı: logo | menü | CTA | hamburger */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--header-height);
    gap: 12px;
}

/* ============================================================
   4. LOGO
   ============================================================ */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    max-height: 54px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
    transition: max-height var(--transition);
}

.header-area.header-sticky .logo-img {
    max-height: 48px;
}

/* ============================================================
   5. MASAÜSTÜ NAVİGASYON — display:flex, align-items:center
   ============================================================ */
.desktop-nav {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    /* Bootstrap .nav override */
    background: transparent !important;
    position: static !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    top: auto !important;
    left: auto !important;
    z-index: auto !important;
}

.desktop-nav li {
    list-style: none;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.desktop-nav li a {
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition);
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    background: transparent !important;
}

/* Hover & aktif link rengi */
.desktop-nav li a:hover,
.desktop-nav li a.active {
    color: var(--primary-color) !important;
    background: transparent !important;
}

/* Alt çizgi animasyonu */
.desktop-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.desktop-nav li a:hover::after {
    transform: scaleX(1);
}

.desktop-nav li a.active::after {
    transform: scaleX(1);
}

/* ============================================================
   6. HEADER CTA BUTONU (Hemen Ara)
   ============================================================ */
.header-cta {
    flex-shrink: 0;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), #3a7bd5);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(75, 142, 241, 0.3);
    color: #fff !important;
}

/* ============================================================
   7. HAMBURGERi BUTONU — varsayılan gizli, mobilde görünür
   ============================================================ */
.menu-trigger {
    display: none; /* Masaüstünde gizli */
    cursor: pointer;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 4px;
    flex-shrink: 0;
    z-index: 10001;
    border-radius: 6px;
    transition: background var(--transition);
}

.menu-trigger:hover {
    background: rgba(75, 142, 241, 0.08);
}

.menu-trigger span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
    display: block;
}

/* Hamburger → X animasyonu */
.menu-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   8. OFF-CANVAS OVERLAY — yarı şeffaf arka plan
   ============================================================ */
.offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0; /* top:0; left:0; right:0; bottom:0 */
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    transition: opacity var(--transition);
}

.offcanvas-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================================
   9. OFF-CANVAS SIDEBAR MENÜ — soldan kayarak açılır
   ============================================================ */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: calc(-1 * var(--offcanvas-width)); /* Başlangıçta ekran dışı */
    width: var(--offcanvas-width);
    height: 100vh;
    background: #fff;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    transition: left var(--transition);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Açık durum — soldan kayarak görünür */
.offcanvas-menu.active {
    left: 0;
}

/* Sidebar başlık */
.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.offcanvas-logo img {
    max-height: 36px;
    width: auto;
}

/* Kapat butonu */
.offcanvas-close {
    width: 36px;
    height: 36px;
    background: rgba(75, 142, 241, 0.08);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 16px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.offcanvas-close:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Dikey menü linkleri — ortalanmış, eşit boşluklu */
.offcanvas-nav {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    flex: 1;
}

.offcanvas-nav li {
    width: 100%;
}

.offcanvas-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: var(--text-dark) !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.offcanvas-nav li a i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
    transition: color var(--transition);
}

.offcanvas-nav li a:hover {
    background: rgba(75, 142, 241, 0.06);
    color: var(--primary-color) !important;
    border-left-color: var(--primary-color);
    padding-left: 28px;
}

.offcanvas-nav li a:hover i {
    color: var(--primary-color);
}

/* Aktif sayfa */
.offcanvas-nav li a.active {
    background: rgba(75, 142, 241, 0.1);
    color: var(--primary-color) !important;
    border-left-color: var(--primary-color);
}

.offcanvas-nav li a.active i {
    color: var(--primary-color);
}

/* Sidebar alt: telefon butonu */
.offcanvas-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.offcanvas-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #3a7bd5);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.offcanvas-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(75, 142, 241, 0.3);
    color: #fff !important;
}

/* ============================================================
   10. GRADIENT & BORDER BUTONLAR (sayfa içi kullanım)
   ============================================================ */
.gradient-button {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
}

.gradient-button a {
    background: linear-gradient(135deg, var(--primary-color), #3a7bd5) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.gradient-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(75, 142, 241, 0.3);
}

.border-button {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
}

.border-button a {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
}

.border-button a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ============================================================
   11. MAIN BANNER (Hero)
   ============================================================ */
.main-banner {
    padding: 130px 0 80px !important;
    margin-top: var(--header-height);
    background: linear-gradient(135deg, #f1f6ff 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Orijinal şablon pseudo elementleri kaldır */
.main-banner::before,
.main-banner::after {
    display: none !important;
}

.main-banner h1 {
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.main-banner h2 {
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.main-banner h1 em,
.main-banner h2 em {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 700;
}

.main-banner p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 400;
}

.main-banner .right-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* ============================================================
   12. SECTION HEADING
   ============================================================ */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2,
.section-heading h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-heading h2 em,
.section-heading h4 em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 700;
}

.section-heading p {
    color: var(--text-muted) !important;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.section-heading img {
    margin: 15px auto;
    display: block;
}

/* ============================================================
   13. SERVİS KARTLARI
   ============================================================ */
.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.service-item h3,
.service-item h4,
.service-item h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.service-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   14. ÜRÜN KARTLARI
   ============================================================ */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

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

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 20px;
}

.category-badge {
    display: inline-block;
    background: rgba(75, 142, 241, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 14px 0;
}

/* ============================================================
   15. İLETİŞİM FORMU & KARTLAR
   ============================================================ */
.contact-form {
    background: #fff;
    padding: 40px !important;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.contact-form h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 28px;
    font-size: 1.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fff;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(75, 142, 241, 0.1);
    outline: none;
}

.contact-form .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-form button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color), #3a7bd5);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(75, 142, 241, 0.3);
}

.contact-info-card {
    background: #fff;
    padding: 30px !important;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    margin-bottom: 25px;
    transition: all var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(75, 142, 241, 0.12);
}

.contact-info-card i {
    color: var(--primary-color);
    font-size: 2.5rem !important;
    margin-bottom: 15px;
    display: block;
}

.contact-info-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   16. FOOTER — ortalanmış, dengeli sütunlar
   ============================================================ */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1c2e 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px !important;
    margin-top: 60px;
}

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

.footer-widget h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 10px;
    display: block !important;
}

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

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.9rem;
}

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

/* Hızlı Linkler — masaüstünde ortalanmış */
.footer-links-widget {
    text-align: center;
}

.footer-links-widget ul {
    display: inline-block;
    text-align: left;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(75, 142, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    transition: all var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-3px);
}

.copyright-text {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.copyright-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

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

.copyright-text a:hover {
    text-decoration: underline;
}

/* ============================================================
   17. ERİŞİLEBİLİRLİK — Skip link
   ============================================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    border-radius: 0 0 6px 0;
    font-size: 0.9rem;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* ============================================================
   18. RESPONSIVE — Tablet (≤991px)
   ============================================================ */
@media (max-width: 991px) {

    /* Header yüksekliği küçülür */
    :root {
        --header-height: 60px;
    }

    /* Masaüstü nav ve CTA butonu gizlenir */
    .desktop-nav,
    .header-cta {
        display: none !important;
    }

    /* Hamburger görünür */
    .menu-trigger {
        display: flex !important;
    }

    /* Logo + hamburger aynı satırda, dikeyde ortalanmış */
    .main-nav {
        height: var(--header-height);
        gap: 8px;
        justify-content: space-between;
    }

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

    /* Banner */
    .main-banner {
        padding: 110px 0 60px !important;
        margin-top: var(--header-height);
    }

    .main-banner h1,
    .main-banner h2 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .main-banner p {
        font-size: 1rem;
        margin-bottom: 22px;
    }

    .section-heading h2,
    .section-heading h4 {
        font-size: 1.8rem;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .product-image {
        height: 220px;
    }

    .contact-form {
        padding: 30px !important;
    }

    /* Footer — tüm kolonlar ortalanmış */
    footer {
        padding: 40px 0 20px !important;
    }

    .footer-widget {
        margin-bottom: 28px;
        text-align: center;
    }

    .footer-widget h4 {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .footer-widget p {
        font-size: 0.9rem;
    }

    .footer-widget ul {
        text-align: center;
    }

    .footer-links-widget ul {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
    }

    .copyright-text {
        margin-top: 20px;
        padding-top: 18px;
    }

    .copyright-text p {
        font-size: 0.82rem;
    }
}

/* ============================================================
   19. RESPONSIVE — Mobil (≤767px)
   ============================================================ */
@media (max-width: 767px) {

    :root {
        --header-height: 56px;
    }

    /* Header kompakt */
    .header-area .container {
        padding: 0 14px;
    }

    .main-nav {
        height: var(--header-height);
        gap: 6px;
    }

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

    /* Hamburger butonu — logo ile üst üste binmez */
    .menu-trigger {
        width: 36px;
        height: 36px;
        padding: 3px;
    }

    /* Banner — mobil hero */
    .main-banner {
        padding: 60px 0 40px !important;
        margin-top: 0;
        background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f8f9ff 100%);
    }

    /* Görsel üstte, metin altta */
    .main-banner .row {
        flex-direction: column-reverse;
    }

    .main-banner h1,
    .main-banner h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }

    .main-banner p {
        font-size: 0.92rem;
        margin-bottom: 18px;
        line-height: 1.6;
        color: #5a5f73;
    }

    .main-banner .right-image {
        margin-bottom: 20px;
    }

    .main-banner .right-image img {
        border-radius: 14px;
        max-height: 260px;
        object-fit: cover;
    }

    /* Butonlar tam genişlik */
    .main-banner .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }

    .gradient-button,
    .border-button {
        width: 100%;
    }

    .gradient-button a,
    .border-button a {
        width: 100%;
        justify-content: center;
        padding: 13px 16px !important;
        font-size: 14px;
        border-radius: 10px !important;
    }

    /* Mobil animasyon — hafif, performans dostu */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .main-banner .right-image {
        animation: fadeInUp 0.5s ease both;
    }

    .section-heading h2,
    .section-heading h4 {
        font-size: 1.55rem;
    }

    .product-image {
        height: 190px;
    }

    .product-info {
        padding: 16px;
    }

    .contact-form {
        padding: 22px !important;
        border-radius: 16px !important;
    }

    .contact-form h3 {
        font-size: 1.25rem;
        margin-bottom: 18px;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 10px 13px;
        font-size: 0.9rem;
    }

    /* Footer — tek kolon, tam ortalanmış */
    footer {
        padding: 32px 0 16px !important;
    }

    .footer-widget {
        margin-bottom: 22px;
        text-align: center;
    }

    .footer-widget h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .footer-widget p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .footer-widget ul {
        text-align: center;
    }

    .footer-widget ul li a {
        font-size: 0.88rem;
    }

    /* Hover padding-left animasyonu mobilde kaldırılır */
    .footer-widget ul li a:hover {
        padding-left: 0;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .copyright-text {
        margin-top: 16px;
        padding-top: 16px;
    }

    .copyright-text p {
        font-size: 0.78rem;
    }

    /* Footer sütunları tek kolona düşer */
    .col-lg-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================================
   20. RESPONSIVE — Küçük Mobil (≤575px)
   ============================================================ */
@media (max-width: 575px) {

    .main-banner h1,
    .main-banner h2 {
        font-size: 1.55rem;
        margin-bottom: 10px;
    }

    .main-banner p {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .gradient-button a,
    .border-button a {
        padding: 11px 14px !important;
        font-size: 13px;
    }

    .section-heading h2,
    .section-heading h4 {
        font-size: 1.35rem;
    }

    .product-image {
        height: 170px;
    }

    .contact-form {
        padding: 18px !important;
        border-radius: 14px !important;
    }

    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    footer {
        padding: 28px 0 14px !important;
    }

    .footer-widget h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-widget p {
        font-size: 0.82rem;
    }

    .copyright-text p {
        font-size: 0.75rem;
    }
}

/* ============================================================
   21. YATAY (LANDSCAPE) KÜÇÜK EKRAN
   ============================================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .main-banner {
        padding: 90px 0 40px !important;
    }

    .main-banner h1,
    .main-banner h2 {
        font-size: 1.6rem;
    }
}

/* ============================================================
   22. PRINT — Gereksiz elemanlar gizlenir
   ============================================================ */
@media print {
    .header-area,
    footer,
    .menu-trigger,
    .offcanvas-menu,
    .offcanvas-overlay {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
