/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #ff4d4d;
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-accent: linear-gradient(135deg, #ff4d4d 0%, #ff6b6b 100%);
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow);
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-primary);
    padding-top: 80px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.7) contrast(1.2);
}

.overlay {
    background: none !important;
}

.hero-content {
    background: rgba(0,0,0,0.97) !important;
    color: #fff !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px 8px rgba(0,0,0,0.85), 0 0 0 12px rgba(0,0,0,0.45) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    position: relative !important;
    z-index: 10 !important;
}
.hero-content h1, .hero-content p, .hero-content span {
    color: #fff !important;
    text-shadow: 0 4px 32px #000, 0 0 2px #000 !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px !important;
}
.hero-content .btn, .hero-content .btn-primary, .hero-content .btn-outline-light {
    background: #ff4d4d !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 24px 4px #000 !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 8px #000 !important;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--text-color);
}

.btn-primary:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
    box-shadow: none !important;
    transform: none !important;
    border: none !important;
}

.btn-outline-light {
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
}

.btn-outline-light:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
    box-shadow: none !important;
    transform: none !important;
    border: none !important;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Product Cards */
.product-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    background: var(--secondary-color);
}

.product-info .badge {
    background: var(--accent-color);
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.product-info h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Features Section */
.why-choose-us {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.feature-box {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 77, 77, 0.1);
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-box:hover .icon-wrapper {
    background: var(--accent-color);
    transform: rotateY(180deg);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature-box:hover .icon-wrapper i {
    color: var(--text-color);
    transform: rotateY(-180deg);
}

.feature-box h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-accent);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content {
        padding: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(100, 255, 218, 0.1)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--text-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.service-card {
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    transform: rotateY(180deg);
}

.service-card .icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-card .btn {
    width: 100%;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.category-filter {
    margin-bottom: 3rem;
}

.category-filter .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.category-filter .btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.product-item {
    transition: var(--transition);
}

.product-card {
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 2rem;
    background: var(--secondary-color);
}

.product-info .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--text-color);
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Footer Styles */
.footer {
    background: var(--gradient-primary);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255, 77, 77, 0.1)"/></svg>');
    opacity: 0.5;
}

.footer h5 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-links li i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-links li span {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.footer-links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 77, 77, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--text-color);
}

.footer-bottom .fa-heart {
    color: var(--accent-color);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer h5 {
        margin-top: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* --- SLIDER ÜZERİNDEKİ BUTONLAR HER ZAMAN TIKLANABİLİR OLSUN --- */
.hero-content, .hero-content * {
    pointer-events: auto !important;
    opacity: 1 !important;
}
.hero-content {
    position: relative !important;
    z-index: 10 !important;
}
.video-background, .video-background video {
    z-index: 1 !important;
    pointer-events: none !important;
} 