/* Hanoglurulman.com - Ana CSS Dosyası */

/* Bootstrap 5 CDN entegrasyonu HTML'de yapılacak */

/* Ana Renkler */
:root {
    --primary-blue: #2563eb;
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --white: #ffffff;
    --dark-gray: #374151;
    --text-dark: #1f2937;
    --light-blue: #dbeafe;
    --light-gray: #f3f4f6;
    --text-gray: #6b7280;
}

/* Genel Stiller */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Ana İçerik Konteyner */
.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 0;
    position: relative;
    z-index: 1;
}

/* Sayfa Geçişleri */
.main-content section {
    position: relative;
    z-index: 2;
}

/* Standart Section Spacing */
.main-content section:not(.modern-hero-section):not(.hero-section):not(.page-title-section) {
    padding: 4rem 0;
}

/* Sayfa Başlığı Section */
.page-title-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 6rem 0 4rem 0;
    margin-top: 100px; /* navbar yüksekliği kadar */
}

.page-title-section h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-title-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.page-title-section .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.page-title-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.page-title-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-title-section .breadcrumb-item a:hover {
    color: white;
}

.page-title-section .breadcrumb-item.active {
    color: white;
}

.main-content section.bg-light {
    background-color: #f8f9fa !important;
}

.main-content section.bg-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-gray);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Modern Header Stili - RBK Tekstil Benzeri */
.modern-navbar {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 100px;
}

.modern-navbar.scrolled {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
    padding: 1rem 0;
    min-height: 80px;
}

/* Navbar Brand Logo */
.navbar-logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.8rem 0 !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: white !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* CTA Buttons */
.navbar-cta .btn {
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.navbar-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.navbar-cta .btn-light {
    background: white;
    color: #1e3a8a;
    border: 2px solid white;
}

.navbar-cta .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Custom Mobile Toggle */
.custom-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    background: transparent;
}

.custom-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
    opacity: 1;
}

.whatsapp-float:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    color: white;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Product Card Image Slider */
.product-image-slider {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px 8px 0 0;
}

.product-image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image-slider .image-primary {
    z-index: 2;
}

.product-image-slider .image-secondary {
    z-index: 1;
    transform: translateX(100%);
}

.product-image-slider:hover .image-primary {
    transform: translateX(-100%);
}

.product-image-slider:hover .image-secondary {
    transform: translateX(0);
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
}

.custom-toggler:hover span {
    background: rgba(255, 255, 255, 0.8);
}

.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: white;
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: white;
}

/* Modern Hero Section - RBK Tekstil Benzeri */
.modern-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

/* Geniş ekranlar için hero content'i yukarıya çekme */
@media (min-width: 1201px) {
    .modern-hero-section {
        min-height: 85vh;
        padding-top: 40px;
        justify-content: center;
    }
    
    .modern-hero-section .container {
        align-self: center;
    }
    
    .modern-hero-section .row {
        align-items: center;
        margin-top: -50px;
    }
}

/* Çok geniş ekranlar için daha iyi dengeleme */
@media (min-width: 1400px) {
    .modern-hero-section {
        min-height: 80vh;
        padding-top: 40px;
    }
    
    .modern-hero-section .row {
        margin-top: -80px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 550px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #dbeafe 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.6) 50%, rgba(147, 197, 253, 0.4) 100%);
    z-index: -1;
}



@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Hero Content */
.hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.text-highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #1e3a8a, #2563eb);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Hero Logo */
.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.hero-logo-circle {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

.hero-logo-circle::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite reverse;
}

.hero-logo {
    width: 250px;
    height: auto;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-logo-circle {
        width: 200px;
        height: 200px;
        margin-top: 2rem;
    }
    
    .hero-logo {
        width: 100px;
    }
    
    .hero-logo-circle::before {
        width: 220px;
        height: 220px;
    }
}

/* Buton Stili */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Kart Stili */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Ürün Kategorileri */
.product-categories {
    padding: 80px 0;
    background-color: var(--light-gray);
}

/* Kart Stilleri */
.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(155, 89, 182, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Avantaj ikonları için özel stil */
.bg-white .category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #60a5fa);
    color: white;
    font-size: 2.5rem;
    border: none;
    backdrop-filter: none;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.bg-white .category-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.25);
}

.category-content {
    padding: 1.5rem;
}

.category-card h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.category-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.category-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.category-card .btn {
    width: 100%;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-card .btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.reference-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* İletişim Formu */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 40px 0 20px;
}

/* Footer Logo */
.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 10px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer p, .footer a {
    color: #d1d5db;
    text-decoration: none;
}

.footer a:hover {
    color: var(--white);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .modern-hero-section {
        padding: 6rem 0 4rem;
        min-height: 90vh;
    }
    
    .modern-hero-section .row {
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-logo-container {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 992px) {
    .modern-navbar .navbar-nav {
        
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideDownFadeIn 0.3s ease-out;
    }
    
    .modern-navbar .nav-link {
        color: white !important;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
        font-weight: 500;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        text-decoration: none;
    }
    
    .modern-navbar .nav-link:hover {

        color: white !important;
        transform: translateX(5px);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    
    .modern-navbar .nav-link.active {

        color: white !important;

    }
    
    .modern-navbar .nav-link:focus {
        color: white !important;
        background: rgba(255, 255, 255, 0.1);
        outline: none;
    }
    
    .navbar-cta {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-cta .btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white !important;
        margin: 0.25rem 0;
        width: 100%;
        font-weight: 500;
    }
    
    .navbar-cta .btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    }
    

    
    .modern-hero-section {
        padding: 4rem 0 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-container {
        position: relative;
        right: auto;
        top: auto;
        margin: 2rem auto 0;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .modern-navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .modern-hero-section {
        padding: 3rem 0 2rem;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .category-image {
        height: 180px;
    }
    
    .category-content {
        padding: 1.25rem;
    }
    
    .category-card h4 {
        font-size: 1.1rem;
    }
    
    .category-features {
        justify-content: center;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .category-card {
        margin-bottom: 2rem;
    }
    
    .navbar-brand img {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 40px;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .product-categories {
        padding: 60px 0;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Özel Yardımcı Sınıflar */
.text-primary {
    color: var(--primary-blue) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}