/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
}


/* Color Scheme */
:root {
    --primary-color: #1a237e;  /* Koyu mavi tema rengi */
    --secondary-color: #283593;  /* Biraz daha açık mavi */
    --accent-color: #1a237e;  /* Koyu mavi */
    --light-bg: #f5f6fa;
    --dark-text: #2c3e50;
    --primary-color-rgb: 26, 35, 126;  /* RGB değerleri */
    --secondary-color-rgb: 40, 53, 147;  /* RGB değerleri */
    --gradient-primary: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(26, 35, 126, 0.95) 100%);
    --gradient-secondary: linear-gradient(135deg, rgba(40, 53, 147, 0.85) 0%, rgba(40, 53, 147, 0.95) 100%);
}

/* Slider Styles */
.carousel-item {
    height: 400px; /* Sabit yükseklik */
    background-color: var(--light-bg);
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
    max-width: 600px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Navigation Styles */
.navbar {
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar.navbar-dark .navbar-brand,
.navbar.navbar-dark .nav-link {
    color: white !important;
}

.navbar.navbar-dark .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.navbar.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/fael/assets/images/pattern.png');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: var(--gradient-primary);
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
    background: var(--light-bg);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: white;
    color: #000000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover h3 {
    color: white;
}

.feature-card p {
    margin-bottom: 0;
    color: #666;
    flex: 1;
    display: flex;
    align-items: center;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.category-overlay .btn {
    border-radius: 12px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Card Styles */
.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: contain;
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.card-title {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-text {
    flex: 1;
    color: #666;
    line-height: 1.6;
}

.product-price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
    margin: 1rem 0;
}

.card .btn-primary {
    margin-top: auto;
    width: 100%;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

/* Product Specific Styles */
.product-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-specs {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.social-links a {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    margin-right: 15px;
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Component Specific Styles */
.component-value {
    font-family: 'Courier New', monospace;
    color: var(--accent-color);
    font-weight: bold;
}

.component-package {
    font-size: 0.9rem;
    color: #666;
}

.component-stock {
    color: #28a745;
    font-weight: 500;
}

/* Product Detail Page */
.product-image {
    max-height: 400px;
    object-fit: contain;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    color: var(--accent-color);
    cursor: pointer;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
    
    .card-img-top {
        height: 150px;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .carousel-caption {
        padding: 15px;
        bottom: 20px;
    }
    
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Search and Filter Section */
.filter-section {
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: var(--light-bg);
    padding: 0.75rem 1rem;
    border-radius: 5px;
}

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

/* Alert Styles */
.alert-info {
    background-color: var(--light-bg);
    border-color: var(--secondary-color);
    color: var(--dark-text);
}

/* Team Section Styles */
.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: var(--gradient-primary);
    color: white;
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-card:hover h3 {
    color: white;
}

.team-card p {
    margin-bottom: 0;
    color: #666;
    transition: all 0.3s ease;
}

.team-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/fael/assets/images/pattern.png');
    opacity: 0.1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-card .card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-card .card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(180deg);
    background: var(--secondary-color);
}

.value-card .value-icon i {
    font-size: 2rem;
    color: #fff;
}

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

.value-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
}

.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card .team-info {
    padding: 25px;
    text-align: center;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/fael/assets/images/pattern.png');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-section .btn-light {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-card {
        padding: 30px;
    }
    
    .about-card .card-title {
        font-size: 1.8rem;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .team-card img {
        height: 250px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Language Switcher Styles */
.dropdown-item-form {
    margin: 0;
    padding: 0;
}

.dropdown-item-form .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item-form .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-item-form .dropdown-item.active {
    background-color: rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.dropdown-item-form .dropdown-item img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

#languageDropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#languageDropdown i {
    font-size: 1.1rem;
} 