/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Styles */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Logo'yu beyaz yapar */
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-brand img {
    filter: brightness(1) invert(0); /* Hover'da orijinal renk */
    transform: scale(1.1);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-shadow: 1px 1px 3px rgba(255,255,255,0.5);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1102;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Side Menu */
.mobile-side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-side-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 1101;
}

.mobile-side-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-menu-logo {
    height: 35px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #8B4513;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(139, 69, 19, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #8B4513;
    transform: translateX(5px);
}

.mobile-nav-link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: #8B4513;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .mobile-menu-content {
        width: 75%;
    }
}

@media (max-width: 400px) {
    .mobile-menu-content {
        width: 85%;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(160, 82, 45, 0.8) 100%), 
                url('../images/hero-section/hero-section-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0; /* Üst margin'i kaldır */
    padding-top: 80px; /* Navbar yüksekliği kadar padding */
}

/* İkinci görsel ve hover efekti kaldırıldı */

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-section .lead {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 500;
}

.hero-section p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-image {
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-image i {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero section responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        background-position: center center;
        padding-top: 70px; /* Mobilde daha az padding */
    }
    
    /* İkinci görsel responsive referansı kaldırıldı */
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
}

/* About Section */
.section-header {
    position: relative;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 2px;
}

.about-content h3 {
    color: #8B4513;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.about-badge .badge {
    background: linear-gradient(45deg, #8B4513, #A0522D) !important;
    border: none;
    font-weight: 600;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(160, 82, 45, 0.9));
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: #8B4513;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
}

.feature-content h6 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.about-stats {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
}

.stat-item {
    padding: 20px 10px;
}

.stat-number {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-weight: 500;
}

.production-info-card {
    margin-top: 50px;
}

.production-info-card .card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: none;
}

.production-info-card h4 {
    color: #8B4513;
}

.production-icon {
    opacity: 0.1;
    color: #8B4513;
}

/* Video Banner */
.video-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Image Banner */
.image-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.image-banner-wrapper {
    margin: 0;
    width: 100%;
}

.image-banner {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 400px;
    width: 100%;
}

.banner-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(139, 69, 19, 0.5) 30%, 
        rgba(160, 82, 45, 0.4) 70%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.banner-title h2 {
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.banner-title p {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.video-banner-wrapper {
    margin: 0;
    width: 100%;
}

.video-banner {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 400px;
    width: 100%;
}

/* Hover efekti kaldırıldı */

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(139, 69, 19, 0.5) 30%, 
        rgba(160, 82, 45, 0.4) 70%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.overlay-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video title stilleri kaldırıldı */

.video-stats {
    margin-top: 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

/* Before pseudo-element kaldırıldı */

/* Stat card before hover efekti kaldırıldı */

/* Stat card hover efekti kaldırıldı */

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

/* Stat icon hover efekti kaldırıldı */

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Loading state ve spin animasyonu kaldırıldı */

.placeholder-image {
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Services Section */
.services-section {
    background: #ffffff;
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #f8f9fa;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
    border-color: #8B4513;
}

.service-icon {
    margin-bottom: 20px;
}

.service-card .card-body {
    padding: 2rem;
}

.service-card:hover .service-icon i {
    color: #8B4513 !important;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
}

/* İletişim Kartları */
.contact-info-card,
.contact-form-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #8B4513;
    background: #ffffff;
}

.contact-info-header,
.contact-form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.contact-info-header i,
.contact-form-header i {
    display: block;
    margin: 0 auto 15px;
}

.contact-info-header h4,
.contact-form-header h4 {
    color: #8B4513;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 18px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    background: #ffffff;
    transform: translateX(5px);
    border-color: #8B4513;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #8B4513;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
    overflow: hidden;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details h6 {
    color: #8B4513;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-details p {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Sosyal Medya Basit Linkler */
.social-links-section {
    border-top: 2px solid #f8f9fa;
    padding-top: 20px;
}

.social-link-simple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 27.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
    overflow: hidden;
}

.social-link-simple:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: white;
}

.social-link-simple.whatsapp:hover {
    background: #25D366;
}

.social-link-simple.facebook:hover {
    background: #1877F2;
}

.social-link-simple.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* İletişim Formu */
.contact-form-card {
    background: #ffffff;
}

/* Google Maps Banner - Fullpage */
.maps-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.maps-banner-wrapper {
    margin: 0;
    width: 100%;
}

.maps-banner {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 400px;
    width: 100%;
}

.maps-banner iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles */
.footer-section {
    background: #ffffff;
    color: #333333;
    margin-top: 0;
    border-top: 1px solid #e9ecef;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-brand .footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.social-link-footer:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.social-link-footer.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-link-footer.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link-footer.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
}

.footer-title {
    color: #8B4513;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #8B4513;
    border-radius: 2px;
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-menu a:hover {
    color: #8B4513;
    transform: translateX(5px);
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-item-footer i {
    color: #8B4513;
    margin-right: 12px;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.contact-item-footer span {
    color: #666666;
    line-height: 1.4;
}

.footer-bottom {
    background: #8B4513;
    padding: 20px 0;
    border-top: 1px solid #A0522D;
}

.copyright {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-bottom-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #f8f9fa;
    text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.btn-brown {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-brown:hover {
    background: linear-gradient(45deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
    color: white;
}

/* Eski stiller kaldırıldı */
.contact-info h4 {
    color: #8B4513;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    text-align: center;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h4 {
    color: #8B4513;
    margin-bottom: 30px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.btn {
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Social Links */
.social-links a {
    transition: all 0.3s ease;
}

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

/* Footer */
footer {
    margin-top: 0;
    background: #ffffff !important;
}

.footer-logo {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-form {
        margin-top: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .about-image img {
        max-width: 100%;
        height: auto;
    }
    
    .about-stats {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .production-info-card .card-body {
        padding: 30px 20px !important;
    }
    
    .video-banner {
        height: 500px;
        border-radius: 0;
        /* Tüm hover ve animasyon efektleri kaldırıldı */
    }
    
    .video-overlay {
        padding: 40px 20px;
    }
    
    .overlay-content {
        padding: 0 15px;
    }
    
    /* Video title responsive stilleri kaldırıldı */
    
    .image-banner {
        height: 500px;
        border-radius: 0;
    }
    
    .banner-overlay {
        padding: 40px 20px;
    }
    
    .banner-title h2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .banner-title p {
        font-size: 1.1rem;
    }
    
    .stat-card {
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .video-stats .stat-number {
        font-size: 1.4rem;
    }
    
    .video-stats .stat-item {
        padding: 12px 8px;
    }
    
    .video-stats .row {
        margin: 0 -5px;
    }
    
    .video-stats .row > * {
        padding: 0 5px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
    }
    
    .video-banner {
        height: 400px;
    }
    
    .video-overlay {
        padding: 30px 15px;
    }
    
    .overlay-content {
        padding: 0 10px;
    }
    
    .stat-card {
        padding: 15px 10px;
        margin-bottom: 10px;
        border-radius: 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 3px;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
    
    .video-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .video-stats .stat-item {
        padding: 12px 8px;
    }
    
    .video-stats .row {
        margin: 0 -5px;
    }
    
    .video-stats .row > * {
        padding: 0 5px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Text Selection */
::selection {
    background: #8B4513;
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8B4513;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A0522D;
}

/* Wood-themed colors */
.bg-brown {
    background-color: #8B4513 !important;
}

.text-brown {
    color: #8B4513 !important;
}
.text-primary {
    color: #8B4513 !important;
}

.bg-primary {
    background-color: #8B4513 !important;
}

.border-primary {
    border-color: #8B4513 !important;
}

/* Service cards special styling */
.service-card .card-body {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.service-card:hover .card-body {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hero section enhanced styling */
.hero-section .btn {
    position: relative;
    z-index: 3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section .btn-primary {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero-section .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Hero content styling */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Hero features stilleri kaldırıldı */

.hero-icon-wrapper {
    position: relative;
    z-index: 2;
}

.hero-logo {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1); /* Logo'yu beyaz yapar */
    transition: all 0.3s ease;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Services Section */

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 72px;
    height: 72px;
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    padding: 0;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    animation: bounce 2.2s infinite;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.scroll-arrow:hover {
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero buttons responsive */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    /* Hero features responsive stilleri kaldırıldı */
}

/* Enhanced hero section for mobile */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .hero-icon-wrapper i {
        font-size: 4rem !important;
    }
    
    .hero-subtitle h5 {
        font-size: 1rem;
    }
    
    .hero-subtitle p {
        font-size: 0.8rem;
    }
} 

/* Hakkımızda Bölümü - Yeni Tasarım */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e9ecef" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23dee2e6" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ced4da" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: float 3s ease-in-out infinite;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #A0522D);
    border-radius: 2px;
    position: relative;
    margin: 0 auto 30px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #8B4513;
    border-radius: 50%;
    top: -4px;
}

.section-divider::before {
    left: -6px;
}

.section-divider::after {
    right: -6px;
}

/* Ana İçerik Grid */
.about-section .row {
    align-items: center;
    margin: 0;
}

.about-section .col-lg-6 {
    padding: 0 20px;
}

/* Sol Kolon - Görsel ve İstatistikler */
.about-content-left {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.image-container img {
    transition: transform 0.6s ease;
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    text-align: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid rgba(139, 69, 19, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.overlay-badge i {
    color: #8B4513;
    margin-bottom: 8px;
    display: block;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    display: block;
}

/* Sağ Kolon - Metin İçeriği */
.about-content-right {
    padding-left: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.about-description h3 {
    color: #212529;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 2.2rem;
    line-height: 1.2;
}

.about-description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #A0522D);
    border-radius: 2px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Özellik Kartları - Yeni Tasarım */
.features-grid {
    margin-top: 0;
}

.feature-card-modern {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.feature-icon-modern {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon-modern::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card-modern:hover .feature-icon-modern::after {
    opacity: 1;
}

.feature-icon-modern i {
    color: white;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-content h5 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.feature-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Animasyonlar */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Tasarım */
@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content-right {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }
    
    .about-content-right h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-main-image {
        margin-bottom: 30px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-description h3 {
        font-size: 1.8rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .feature-card-modern {
        padding: 20px 16px;
        margin-bottom: 15px;
    }
    
    .feature-icon-modern {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon-modern i {
        font-size: 1.2rem;
    }
    
    .about-section .col-lg-6 {
        padding: 0 15px;
    }
} 

/* Minimal Özellik Kartları */
.feature-card-minimal {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 12px 14px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hover efekti kaldırıldı */

.feature-icon-minimal {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

/* İkon hover efekti kaldırıldı */

.feature-icon-minimal i {
    color: #6c757d;
    font-size: 0.8rem;
}

/* İkon yazı rengi hover efekti kaldırıldı */

.feature-content-minimal {
    text-align: left;
    flex: 1;
}

.feature-title {
    color: #212529;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
}

.feature-subtitle {
    color: #6c757d;
    font-size: 0.7rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
}

/* Responsive minimal kartlar */
@media (max-width: 767.98px) {
    .feature-card-minimal {
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    
    .feature-icon-minimal {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
    
    .feature-icon-minimal i {
        font-size: 0.7rem;
    }
    
    .feature-title {
        font-size: 0.75rem;
    }
    
    .feature-subtitle {
        font-size: 0.65rem;
    }
} 