/* Genel Stiller */
:root {
    --primary: #2D3250;
    --secondary: #424769;
    --accent: #F76E11;
    --light: #F7F7F7;
    --dark: #1B1B1B;
    --gradient-primary: linear-gradient(135deg, #2D3250 0%, #424769 100%);
    --gradient-accent: linear-gradient(135deg, #F76E11 0%, #FF9F45 100%);
    --shadow-sm: 0 2px 8px rgba(45, 50, 80, 0.1);
    --shadow-md: 0 4px 12px rgba(45, 50, 80, 0.15);
    --shadow-lg: 0 8px 24px rgba(45, 50, 80, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

/* Navbar Stilleri */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 50, 80, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    max-height: 50px;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--primary) !important;
    padding: 0.8rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    color: var(--accent) !important;
}

.nav-link i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-link:hover i {
    transform: translateY(-2px);
}

/* Mobil Menü */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 1.5rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        margin-top: 2rem;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1rem;
        background: transparent;
        border-radius: 8px;
        margin: 0.25rem 0;
        color: #202124 !important;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(66, 133, 244, 0.08);
        color: #1a73e8 !important;
    }

    .nav-link.active {
        background: rgba(66, 133, 244, 0.12);
        color: #1a73e8 !important;
    }

    .nav-link i {
        width: 24px;
        text-align: center;
        color: #5f6368;
        transition: all 0.3s ease;
    }

    .nav-link:hover i,
    .nav-link.active i {
        color: #1a73e8;
    }

    .btn-close-menu {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        background: transparent;
        border: none;
        color: #5f6368;
        font-size: 1.25rem;
        padding: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .btn-close-menu:hover {
        background: rgba(66, 133, 244, 0.08);
        color: #1a73e8;
        transform: rotate(90deg);
    }

    .navbar-contact {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(60, 64, 67, 0.08);
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        padding: 0.75rem 1rem;
        background: rgba(66, 133, 244, 0.04);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: rgba(66, 133, 244, 0.08);
    }

    .contact-item i {
        font-size: 1.25rem;
        color: #1a73e8;
        transition: all 0.3s ease;
    }

    .contact-item:hover i {
        transform: scale(1.1);
    }

    .contact-item .fa-whatsapp {
        color: #25D366;
    }

    .contact-item:hover .fa-whatsapp {
        color: #128C7E;
    }

    .contact-item small {
        color: #5f6368;
        font-size: 0.75rem;
        display: block;
    }

    .contact-item p {
        color: #202124;
        font-weight: 500;
        margin: 0;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(45, 50, 80, 0.85), rgba(66, 71, 105, 0.85)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.hero-section .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #fff;
    color: var(--primary);
    border: 2px solid #fff;
}

.hero-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
    border-color: transparent;
}

.hero-section .btn:hover::before {
    opacity: 1;
}

.hero-section .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-section .btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 50, 80, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

/* Ürün Kartları */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 50, 80, 0.1);
}

.product-card img {
    height: 300px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 2rem;
    position: relative;
}

.product-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.product-card .card-text {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.product-card i {
    color: var(--accent);
    margin-right: 0.5rem;
}

/* Butonlar */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn-dark {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-outline-dark {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

footer a:hover {
    color: #fff;
}

footer a:hover::after {
    width: 100%;
}

footer .fa-whatsapp {
    color: #25D366;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1,
.hero-section .lead,
.feature-card,
.product-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        min-height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }

    .product-card img {
        height: 250px;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Performans Optimizasyonları */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Erişilebilirlik */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Yazdırma Stilleri */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    body {
        color: #000;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
}

/* Kayan Ürünler */
.carousel {
    padding: 2rem 0;
    position: relative;
}

.carousel-indicators {
    display: none;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-item {
    padding: 1rem;
}

.carousel-item .product-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 50, 80, 0.1);
}

.carousel-item .product-card img {
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-item .product-card {
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(45, 50, 80, 0.1);
    }

    .carousel-item .product-card img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }

    .carousel-item {
        padding: 1rem;
    }

    .carousel-item .row {
        display: block;
        margin: 0;
    }

    .carousel-item .col-lg-4 {
        display: block;
        width: 100%;
        padding: 0;
    }

    .carousel-item .col-lg-4:not(:first-child) {
        display: none;
    }
}

/* İletişim Sayfası Stilleri */
.contact-info,
.contact-form {
    background: #fff;
    border: 1px solid rgba(45, 50, 80, 0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before,
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.contact-info:hover::before,
.contact-form:hover::before {
    opacity: 0.02;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 50, 80, 0.05);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-info:hover .contact-icon {
    background: var(--primary);
    color: #fff !important;
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 50, 80, 0.05);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.feature-icon:hover {
    background: var(--primary);
    color: #fff !important;
    transform: scale(1.1) rotate(5deg);
}

.contact-form .form-floating {
    position: relative;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid rgba(45, 50, 80, 0.1);
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(45, 50, 80, 0.1);
    background: #fff;
}

.contact-form .form-floating > label {
    padding: 1rem 0.75rem;
    color: var(--secondary);
    transition: var(--transition);
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact-form .form-floating > textarea.form-control {
    height: auto;
    min-height: 150px;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--primary);
}

.contact-form .btn {
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.contact-form .btn:hover::before {
    opacity: 1;
}

.contact-info h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.contact-info p {
    color: var(--secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Harita Stilleri */
.ratio-21x9 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.ratio-21x9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.ratio-21x9:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.ratio-21x9:hover::before {
    opacity: 0.1;
}

/* Form Doğrulama Stilleri */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.was-validated .form-select:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-control:invalid:focus,
.was-validated .form-select:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback {
    display: block;
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-info i,
    .contact-form i {
        font-size: 1.2rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
}

/* Sayfa Başlığı ve Breadcrumb */
.page-header {
    background: var(--light);
    border-bottom: 1px solid rgba(45, 50, 80, 0.1);
    margin-top: 76px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
}

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

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--secondary);
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}

/* Küçük Hero Section */
.hero-section-sm {
    min-height: 150px;
    padding: 2rem 0;
    background: linear-gradient(rgba(45, 50, 80, 0.9), rgba(66, 71, 105, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.hero-section-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-section-sm h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-section-sm .lead {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .page-header {
        margin-top: 66px;
    }
    
    .hero-section-sm {
        min-height: 120px;
        padding: 1.5rem 0;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
}

/* Müşteri Yorumları */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 50, 80, 0.1);
    height: 100%;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--accent);
}

.testimonial-content p {
    color: var(--secondary);
    font-style: italic;
}

.testimonial-author h5 {
    color: var(--primary);
    font-weight: 600;
}

.testimonial-author p {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Sertifikalar */
.certificate-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 50, 80, 0.1);
}

.certificate-card img {
    max-height: 100px;
    object-fit: contain;
}

.certificate-card h5 {
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
}

/* Özellik Öğeleri */
.feature-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 50, 80, 0.1);
    height: 100%;
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--secondary);
    margin-bottom: 0;
}

/* Blog Kartları */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 50, 80, 0.1);
    height: 100%;
}

.blog-card img {
    height: 250px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.9rem;
}

.blog-meta i {
    color: var(--accent);
}

.blog-card .card-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-card .card-text {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-card .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

.blog-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.blog-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.blog-card .btn:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-card img {
        height: 200px;
    }
    
    .blog-card .card-title {
        font-size: 1.1rem;
    }
}

/* SSS Bölümü */
.faq-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 50, 80, 0.1);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-card:hover::before {
    opacity: 0.02;
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: rgba(247, 110, 17, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.faq-icon i {
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.faq-card:hover .faq-icon {
    background: var(--accent);
    transform: rotateY(180deg);
}

.faq-card:hover .faq-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.faq-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.faq-card p {
    color: var(--secondary);
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .faq-card {
        padding: 1.5rem;
    }

    .faq-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .faq-icon i {
        font-size: 1.25rem;
    }

    .faq-card h3 {
        font-size: 1.1rem;
    }

    .faq-card p {
        font-size: 0.95rem;
    }
}

/* Dil Seçim Menüsü */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    margin-top: 0.5rem;
}

.language-dropdown {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(247, 110, 17, 0.1);
}

.language-dropdown::-webkit-scrollbar {
    width: 4px;
}

.language-dropdown::-webkit-scrollbar-track {
    background: rgba(247, 110, 17, 0.1);
    border-radius: 2px;
}

.language-dropdown::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

.dropdown-item i.fa-check {
    opacity: 0;
    transition: var(--transition);
}

.dropdown-item.active i.fa-check {
    opacity: 1;
}

.dropdown-item:hover {
    background: rgba(247, 110, 17, 0.1);
    color: var(--accent);
}

.dropdown-item.active {
    background: var(--accent);
    color: #fff;
}

.dropdown-item.active:hover {
    background: var(--accent);
    color: #fff;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(247, 110, 17, 0.1);
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-link.dropdown-toggle:hover {
    background: rgba(247, 110, 17, 0.15);
}

.nav-link.dropdown-toggle::after {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: fixed !important;
        top: 70px !important;
        right: 15px !important;
        left: auto !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
        padding: 0.5rem;
        min-width: 160px;
        max-width: 200px;
        border-radius: 12px;
        margin-top: 0.5rem;
    }

    .language-dropdown {
        max-height: 250px;
    }

    .dropdown-item {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .nav-link.dropdown-toggle {
        padding: 0.5rem;
        font-size: 0.85rem;
        background: transparent;
    }

    .nav-link.dropdown-toggle i {
        font-size: 1.1rem;
        color: var(--accent);
    }

    .nav-link.dropdown-toggle span {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--accent);
    }
}

/* Mobil dil değiştirme menüsü */
@media (max-width: 991px) {
    .d-lg-none .dropdown-toggle {
        padding: 0.5rem;
        font-size: 1rem;
        color: var(--dark);
    }

    .d-lg-none .dropdown-toggle i {
        font-size: 1.1rem;
    }

    .d-lg-none .dropdown-menu {
        position: fixed;
        top: 70px;
        right: 15px;
        width: 200px;
        max-height: 250px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 0.5rem;
        border-radius: 12px;
    }

    .d-lg-none .dropdown-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .d-lg-none .dropdown-item i {
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
}

/* Sayfalama Stilleri */
.pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary);
    border: 1px solid rgba(45, 50, 80, 0.1);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.pagination .page-link:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 50, 80, 0.15);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 50, 80, 0.15);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    border-color: rgba(45, 50, 80, 0.1);
    background-color: #f8f9fa;
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-item {
        margin-bottom: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
     .gallery-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 2rem 0;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Galeri Sayfası Stilleri */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/gallery/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Galeri Stilleri */
.gallery-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.gallery-item {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
    padding: 1rem;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}

/* Modal Stilleri */
.modal {
  display: none; /* Varsayılan olarak gizli */
  position: fixed; /* Sabit konumda kalır */
  z-index: 1000; /* En önde görünür */
  padding-top: 60px; /* Üstten biraz boşluk */
  left: 0;
  top: 0;
  width: 100%; /* Tam genişlik */
  height: 100%; /* Tam yükseklik */
  overflow: auto; /* Gerekirse kaydırma çubukları */
  background-color: rgba(0,0,0,0.9); /* Yarı saydam siyah arka plan */
}

/* Modal İçeriği (Resim) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Kapat Düğmesi */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Genişlikte Ekranlar İçin Resim Başlığı */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Animasyon */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}

/* Küçük Ekranlar İçin Responsive */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/* Sayfalama Stilleri */
.pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary);
    border: 1px solid rgba(45, 50, 80, 0.1);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.pagination .page-link:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 50, 80, 0.15);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 50, 80, 0.15);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    border-color: rgba(45, 50, 80, 0.1);
    background-color: #f8f9fa;
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-item {
        margin-bottom: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
     .gallery-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 2rem 0;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
} 