/* ==============================================
   EL YAZISI FONTLARI - EN YÜKSEK ÖNCELİK
   Bu stiller diğer tüm stillerden önce uygulanır
   ============================================== */

.hero-content h1,
.hero-slider .hero-content h1,
.owl-carousel .hero-content h1 {
    font-family: 'Dancing Script', cursive !important;
}

.hero-content h3,
.hero-slider .hero-content h3,
.owl-carousel .hero-content h3 {
    font-family: 'Caveat', cursive !important;
}

.hero-content p,
.hero-slider .hero-content p,
.owl-carousel .hero-content p {
    font-family: 'Caveat', cursive !important;
}

/*
* Ahşap El Oyma Sanatı
* Modern ve Şık CSS Tasarımı
*/

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --dark-brown: #5C4033;
    --light-brown: #C4A57B;
    --gold: #DAA520;
    --bg-light: #F5F5DC;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.15s ease;
    
    /* Ultra Modern Typography 2024 */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Manrope', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark-brown);
    line-height: 1.2;
    letter-spacing: -1px;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 900; 
    letter-spacing: -2px;
}
h2 { 
    font-size: 2.8rem; 
    font-weight: 800; 
    letter-spacing: -1.5px;
}
h3 { 
    font-size: 2.2rem; 
    font-weight: 700; 
    letter-spacing: -1px;
}
h4 { 
    font-size: 1.6rem; 
    font-weight: 700; 
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    transition: all 0.15s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Bar */
.top-bar {
    background: var(--dark-brown);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--gold);
}

.top-info a {
    color: var(--white);
    margin-right: 25px;
    transition: all 0.15s ease;
}

.top-info a:hover {
    color: var(--gold);
}

.top-info i {
    margin-right: 8px;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: all 0.15s ease;
}

.top-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--box-shadow);
    transition: all 0.15s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.logo-img {
    height: 70px;
    width: 70px;
    transition: all 0.15s ease;
}

/* El yazısı tarzı logo */
.logo-text {
    height: 55px;
    width: auto;
    max-width: 250px;
    transition: all 0.15s ease;
}

.logo-text:hover {
    transform: scale(1.02);
}

.logo-img:hover {
    transform: rotate(360deg);
}

/* Brand text - SVG animasyon için logo-animation.css kullanılıyor */

/* Scrolled navbar - logo küçült */
.navbar.scrolled .logo-img {
    height: 55px;
    width: 55px;
}

/* Responsive Logo Sizes */
@media (max-width: 991px) {
    .logo-img {
        height: 60px;
        width: 60px;
    }
    
    .logo-text {
        height: 45px;
        max-width: 200px;
    }
    
    .navbar.scrolled .logo-img {
        height: 50px;
        width: 50px;
    }
    
    .navbar.scrolled .logo-text {
        height: 40px;
    }
    
    .navbar-brand {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .logo-img {
        height: 50px;
        width: 50px;
    }
    
    .logo-text {
        height: 40px;
        max-width: 180px;
    }
    
    .navbar.scrolled .logo-img {
        height: 42px;
        width: 42px;
    }
    
    .navbar.scrolled .logo-text {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 45px;
        width: 45px;
    }
    
    .logo-text {
        height: 35px;
        max-width: 160px;
    }
    
    .navbar.scrolled .logo-img {
        height: 38px;
        width: 38px;
    }
    
    .navbar.scrolled .logo-text {
        height: 30px;
    }
    
    .navbar-brand {
        gap: 12px;
    }
}

/* Navbar navigation */
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

/* Navbar Links - Modern Hover Efekti */
.navbar-nav .nav-link {
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 8px !important;
    transition: all 0.3s ease !important;
    color: #5C4033 !important; /* Koyu kahverengi - her zaman görünür */
    font-weight: 500 !important;
    font-size: 15px !important;
}

.navbar-nav .nav-link::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 3px !important;
    bottom: 0 !important;
    left: 50% !important;
    background: linear-gradient(90deg, #5C4033, #DAA520) !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.4) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #5C4033 !important;
    transform: translateY(-2px) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100% !important;
    box-shadow: 0 3px 12px rgba(218, 165, 32, 0.6) !important;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: var(--dark-brown); /* Fallback renk */
}

.hero-slide {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--dark-brown); /* Fallback renk */
    display: block !important; /* Force display */
    visibility: visible !important; /* Force visibility */
    opacity: 1 !important; /* Force opacity */
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.85) 0%, rgba(139, 69, 19, 0.6) 100%);
    animation: overlayPulse 2s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none; /* Tıklama engellemez */
}

@keyframes overlayPulse {
    0% { opacity: 0.85; }
    100% { opacity: 0.75; }
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 10s ease-out infinite;
}

/* Owl Carousel visibility fix */
.owl-carousel .owl-item {
    backface-visibility: hidden;
    transform: translateZ(0);
    display: block !important;
}

.owl-carousel .owl-item .hero-slide {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Active slide ensures visibility */
.owl-carousel .owl-item.active .hero-slide {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.owl-carousel .owl-item.active .hero-content {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 10; /* z-index 2 → 10 (overlay'den üstte) */
    height: 100%;
    display: flex !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-content h1 {
    color: #ffffff !important;
    font-size: 5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-shadow: 3px 5px 20px rgba(0,0,0,0.5) !important;
    animation: fadeInUp 0.8s ease-out !important;
    letter-spacing: 2px !important;
    line-height: 1.3 !important;
    font-family: 'Dancing Script', cursive !important;
    text-transform: none !important;
    visibility: visible !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)) !important;
}

.hero-content h3 {
    color: #FFD700 !important;
    font-size: 2.2rem !important;
    margin-bottom: 25px !important;
    font-weight: 600 !important;
    animation: fadeInUp 0.6s ease-out !important;
    letter-spacing: 1px !important;
    font-family: 'Caveat', cursive !important;
    text-transform: none !important;
    visibility: visible !important;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.4) !important;
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 15px !important;
}

.hero-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, #FFD700, transparent);
    border-radius: 2px;
}

.hero-content p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 1.6rem !important;
    margin-bottom: 35px !important;
    max-width: 650px !important;
    animation: fadeInUp 1s ease-out !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    font-family: 'Caveat', cursive !important;
    visibility: visible !important;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.3) !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .btn-primary-custom {
    animation: fadeInUp 1.2s ease-out;
    background: rgba(218, 165, 32, 0.2);
    border: 2px solid rgba(218, 165, 32, 0.6);
    padding: 18px 45px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-content .btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    transition: left 0.5s ease;
    z-index: -1;
}

.hero-content .btn-primary-custom::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-content .btn-primary-custom:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.4);
    border-color: #FFD700;
    color: #5C4033;
}

.hero-content .btn-primary-custom:hover::before {
    left: 0;
}

.hero-content .btn-primary-custom:hover::after {
    transform: translateX(5px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide geçişinde zoom efekti */
.owl-carousel .owl-item.active .hero-slide {
    animation: zoomIn 1s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.2);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-primary-custom {
    background: var(--gold);
    color: var(--dark-brown);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--gold);
    display: inline-block;
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.5);
}

/* Owl Carousel Controls - Modern */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    width: 65px;
    height: 65px;
    border-radius: 20px;
    font-size: 22px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.25) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.owl-carousel .owl-nav button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.8), rgba(184, 134, 11, 0.9));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.owl-carousel .owl-nav button:hover {
    background: transparent !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
    border-color: rgba(218, 165, 32, 0.6) !important;
}

.owl-carousel .owl-nav button:hover::before {
    opacity: 1;
}

.owl-carousel .owl-nav button i,
.owl-carousel .owl-nav button span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.owl-carousel .owl-nav button:hover i,
.owl-carousel .owl-nav button:hover span {
    transform: scale(1.2);
}

.owl-carousel .owl-nav .owl-prev {
    left: 40px;
}

.owl-carousel .owl-nav .owl-next {
    right: 40px;
}

/* Dots - Modern Pill Style */
.owl-carousel .owl-dots {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.owl-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.owl-carousel .owl-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.owl-carousel .owl-dot.active {
    background: transparent !important;
    width: 45px;
    border-radius: 25px;
    border-color: rgba(218, 165, 32, 0.8);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.4);
}

.owl-carousel .owl-dot.active::after {
    transform: translate(-50%, -50%) scale(1);
    border-radius: 25px;
}

.owl-carousel .owl-dot:hover {
    transform: scale(1.2);
    border-color: rgba(218, 165, 32, 0.6);
}

.owl-carousel .owl-dot:hover::after {
    transform: translate(-50%, -50%) scale(0.6);
}

/* Slide indicator */
.slide-indicator {
    position: absolute;
    bottom: 40px;
    left: 50px;
    color: var(--white);
    z-index: 3;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
}

.slide-indicator::before {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--gold);
}

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

.scroll-indicator i {
    font-size: 30px;
    color: var(--gold);
}

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

/* Section Titles - Modern */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: block;
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 4px;
    position: relative;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Title Responsive */
@media (max-width: 991px) {
    .section-title .subtitle {
        font-size: 0.90rem;
        letter-spacing: 3.5px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .section-title h2::after {
        width: 55px;
    }
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 50px;
    }
    
    .section-title .subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    .section-title h2 {
        font-size: 2rem;
        padding-bottom: 20px;
    }
    
    .section-title h2::after {
        width: 50px;
        height: 3px;
    }
    
    .section-title p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .section-title h2::after {
        width: 45px;
    }
}

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

.bg-light-custom {
    background: var(--bg-light);
}

/* About Section */
.about-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-img img {
    width: 100%;
    transition: all 0.15s ease;
}

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

.about-badge {
    display: none !important; /* Badge kaldırıldı */
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--dark-brown);
    padding: 25px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.about-badge .number {
    font-size: 36px;
    line-height: 1;
}

.about-badge .text {
    font-size: 14px;
    text-align: center;
}

.about-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
}

.about-features li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--gold);
    font-size: 18px;
}

/* Services */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.15s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    transition: all 0.15s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--gold), var(--secondary-color));
}

.service-card h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-link-custom {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link-custom:hover {
    color: var(--gold);
    gap: 15px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.15s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9), rgba(218, 165, 32, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.15s ease;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: var(--white);
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: var(--bg-light);
    margin-bottom: 20px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.15s ease;
}

.gallery-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

/* Blog */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.15s ease;
    height: 100%;
}

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

.blog-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.15s ease;
}

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark-brown);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--gold);
    margin-right: 5px;
}

.blog-content h4 {
    margin-bottom: 15px;
}

.blog-content h4 a {
    color: var(--dark-brown);
}

.blog-content h4 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-color));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556 15.858 12.14 28 0zm-5.657 11.343l-9.9 9.9 1.414 1.414 9.9-9.9-1.414-1.414zm5.657 0l9.9 9.9 1.414-1.414-9.9-9.9-1.414 1.414zM12.142 12.142L0 24.284l1.414 1.414L13.556 13.556l-1.414-1.414zm32.284 0L32.284 24.284l1.414 1.414L45.84 13.556l-1.414-1.414zM9.9 24.284l-.828.828 3.9 3.9-1.414 1.414-3.9-3.9-.828.828 7.07 7.072 1.415-1.414L9.9 24.284zm40.2 0l-5.585 5.585 1.414 1.415 3.9-3.9.828.828-7.07 7.07-1.414-1.413 5.585-5.585-1.414-1.415zM24 24.284L12.142 36.142l1.414 1.414L25.414 25.7 24 24.284zm12 0l-11.858 11.858 1.414 1.414L37.414 25.7 36 24.284zM34.627 36.142l-1.414 1.414L45.356 49.7l1.414-1.414L34.627 36.142zM25.373 36.142L13.23 48.284l1.414 1.414L26.787 37.556l-1.414-1.414zm5.657 11.313l-1.414 1.414 7.07 7.07 1.415-1.413-7.07-7.07zm-5.657 0l-7.07 7.07 1.414 1.415 7.07-7.07-1.414-1.415zM32 48.97L19.858 61.113l1.414 1.414L32 51.8l10.728 10.728 1.414-1.414L32 48.97z' fill='%23daa520' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--bg-light);
}

/* CTA Butonları - Uyumlu Tasarım */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-light,
.btn-cta-primary {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    min-width: 200px;
    text-align: center;
}

.btn-cta-light {
    background: var(--white);
    color: #5C4033;
    border-color: var(--white);
    font-weight: 600;
}

.btn-cta-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta-primary {
    background: var(--gold);
    color: #5C4033;
    border-color: var(--gold);
    font-weight: 600;
}

.btn-cta-primary:hover {
    background: rgba(218, 165, 32, 0.1);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
}

/* Responsive CTA Buttons */
@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-light,
    .btn-cta-primary {
        width: 100%;
        min-width: auto;
    }
}

.btn-light-custom {
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--white);
    display: inline-block;
    transition: all 0.15s ease;
}

.btn-light-custom:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* =================================
   DEBUG PANEL - Slider Sorun Tespiti
   (Geliştirme sonrası kaldırılabilir)
   ================================= */
.slider-debug {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    z-index: 9999;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 2px solid #DAA520;
}

.slider-debug h4 {
    color: #DAA520;
    margin: 0 0 12px 0;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-debug .debug-line {
    margin: 6px 0;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
}

.slider-debug .debug-line:last-child {
    border-bottom: none;
}

.slider-debug .debug-label {
    color: #aaa;
    flex: 1;
}

.slider-debug .debug-value {
    font-weight: bold;
    flex: 1;
    text-align: right;
}

.slider-debug .status-ok {
    color: #4CAF50;
}

.slider-debug .status-error {
    color: #f44336;
}

.slider-debug .status-warn {
    color: #FF9800;
}

/* =================================
   ZİYARETÇİ SAYACI
   ================================= */
.visitor-counter {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.95), rgba(139, 69, 19, 0.95));
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.visitor-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50 Q 25 45, 50 50 T 100 50" stroke="rgba(218,165,32,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.visitor-counter .counter-box {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(218, 165, 32, 0.3) !important;
    border-radius: 15px !important;
    padding: 30px 20px !important;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    min-height: 200px !important;
    max-height: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    width: 100% !important;
}

.visitor-counter .counter-box:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

.visitor-counter .counter-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, var(--primary), #B8860B) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    font-size: 24px !important;
    color: white !important;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4) !important;
    transition: all 0.3s ease;
    flex-shrink: 0 !important;
}

.visitor-counter .counter-icon.online {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

.visitor-counter .counter-box:hover .counter-icon {
    transform: scale(1.1) rotate(5deg) !important;
}

.visitor-counter .counter-number {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 10px !important;
    font-family: 'Outfit', sans-serif !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.2 !important;
}

.visitor-counter .counter-label {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .visitor-counter {
        padding: 40px 0 !important;
    }
    
    .visitor-counter .counter-box {
        padding: 25px 15px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    
    .visitor-counter .counter-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .visitor-counter .counter-number {
        font-size: 28px !important;
    }
    
    .visitor-counter .counter-label {
        font-size: 12px !important;
    }
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--bg-light);
}

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

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-widget p {
    color: var(--bg-light);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

/* Facebook */
.social-links a.facebook::before {
    background: linear-gradient(135deg, #0062E0, #19AFFF);
}

/* Instagram */
.social-links a.instagram::before {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Twitter/X */
.social-links a.twitter::before {
    background: linear-gradient(135deg, #1DA1F2, #0D95E8);
}

/* YouTube */
.social-links a.youtube::before {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

/* WhatsApp */
.social-links a.whatsapp::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Varsayılan gradient */
.social-links a:not(.facebook):not(.instagram):not(.twitter):not(.youtube):not(.whatsapp)::before {
    background: linear-gradient(135deg, #DAA520, #FFD700);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover i {
    transform: scale(1.1);
    color: #fff;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

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

.footer-links a {
    color: var(--bg-light);
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

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

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 18px;
}

.footer-contact a {
    color: var(--bg-light);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: var(--bg-light);
}

.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.15s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--gold);
    color: var(--dark-brown);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9998;
    transition: all 0.15s ease;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.3);
}

.scroll-top:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.15s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

/* Contact Info */
.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.15s ease;
    border: 2px solid transparent;
}

.contact-info-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-info-box h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-box p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-box a {
    color: var(--text-dark);
}

.contact-info-box a:hover {
    color: var(--gold);
}

/* Map */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-color));
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556 15.858 12.14 28 0zm-5.657 11.343l-9.9 9.9 1.414 1.414 9.9-9.9-1.414-1.414zm5.657 0l9.9 9.9 1.414-1.414-9.9-9.9-1.414 1.414zM12.142 12.142L0 24.284l1.414 1.414L13.556 13.556l-1.414-1.414zm32.284 0L32.284 24.284l1.414 1.414L45.84 13.556l-1.414-1.414zM9.9 24.284l-.828.828 3.9 3.9-1.414 1.414-3.9-3.9-.828.828 7.07 7.072 1.415-1.414L9.9 24.284zm40.2 0l-5.585 5.585 1.414 1.415 3.9-3.9.828.828-7.07 7.07-1.414-1.413 5.585-5.585-1.414-1.415zM24 24.284L12.142 36.142l1.414 1.414L25.414 25.7 24 24.284zm12 0l-11.858 11.858 1.414 1.414L37.414 25.7 36 24.284zM34.627 36.142l-1.414 1.414L45.356 49.7l1.414-1.414L34.627 36.142zM25.373 36.142L13.23 48.284l1.414 1.414L26.787 37.556l-1.414-1.414zm5.657 11.313l-1.414 1.414 7.07 7.07 1.415-1.413-7.07-7.07zm-5.657 0l-7.07 7.07 1.414 1.415 7.07-7.07-1.414-1.415zM32 48.97L19.858 61.113l1.414 1.414L32 51.8l10.728 10.728 1.414-1.414L32 48.97z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

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

.breadcrumb-item {
    color: var(--bg-light);
}

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

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

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

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bg-light);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-slider,
    .hero-slide {
        height: 600px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h3 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0 !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        background: transparent !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }
    
    .navbar-nav .nav-link::after {
        height: 0 !important;
        width: 4px !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        border-radius: 0 2px 2px 0 !important;
        background: linear-gradient(180deg, #5C4033, #DAA520) !important;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(218, 165, 32, 0.1) !important;
        padding-left: 28px !important;
        transform: none !important;
        color: #5C4033 !important;
    }
    
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 4px !important;
        height: 60% !important;
    }
    
    .owl-carousel .owl-nav button {
        width: 55px;
        height: 55px;
        font-size: 18px !important;
        border-radius: 16px;
    }
    
    .owl-carousel .owl-nav .owl-prev {
        left: 20px;
    }
    
    .owl-carousel .owl-nav .owl-next {
        right: 20px;
    }
    
    .owl-carousel .owl-dots {
        bottom: 35px;
        gap: 10px;
    }
    
    .owl-carousel .owl-dot {
        width: 10px;
        height: 10px;
    }
    
    .owl-carousel .owl-dot.active {
        width: 35px;
    }
}

@media (max-width: 767px) {
    .hero-slider,
    .hero-slide {
        height: 500px;
        background-attachment: scroll; /* Mobilde parallax kapat */
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h3 {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .btn-primary-custom {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 20px;
    }
    
    .owl-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 16px !important;
        border-radius: 12px;
        backdrop-filter: blur(8px);
    }
    
    .owl-carousel .owl-nav .owl-prev {
        left: 10px;
    }
    
    .owl-carousel .owl-nav .owl-next {
        right: 10px;
    }
    
    .owl-carousel .owl-dots {
        bottom: 25px;
        gap: 8px;
    }
    
    .owl-carousel .owl-dot {
        width: 8px;
        height: 8px;
    }
    
    .owl-carousel .owl-dot.active {
        width: 30px;
    }
    
    .slide-indicator {
        left: 20px;
        font-size: 14px;
    }
    
    .hero-content .btn-primary-custom {
        padding: 14px 30px;
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .hero-content .btn-primary-custom::after {
        font-size: 14px;
    }
}

/* Pagination */
.pagination {
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 2px solid #e0e0e0;
    margin: 0 5px;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.15s ease;
}

.pagination .page-link:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Basında Biz - Home Section */
.press-card-home {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.15s ease;
    height: 100%;
    position: relative;
}

.press-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.press-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.press-img-home {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.press-img-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.15s ease;
}

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

.press-content-home {
    padding: 25px;
}

.press-source-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.press-content-home h4 {
    font-size: 1.25rem;
    color: var(--dark-brown);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
    min-height: 60px;
}

.press-content-home p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.press-link-home {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    font-size: 0.95rem;
}

.press-link-home:hover {
    color: var(--primary-color);
    gap: 8px;
}

.press-link-home i {
    transition: all 0.15s ease;
}

.press-link-home:hover i {
    transform: translateX(5px);
}

/* Slider Responsive - El Yazısı Fontları */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content h3 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-content h3 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 1.15rem;
    }
}

/* Logo Brand Text Responsive */
@media (max-width: 991px) {
    .brand-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .brand-text {
        font-size: 1.2rem;
    }
    
    .navbar.scrolled .brand-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1rem;
    }
    
    .navbar.scrolled .brand-text {
        font-size: 0.95rem;
    }
}

/* El Yazısı Animasyonu - Kalemle Yazılıyor Efekti */
.handwriting-word {
    display: inline-block;
    opacity: 0;
    animation: handwritingAppear 0.8s ease-out forwards;
}

.handwriting-word:nth-child(1) {
    animation-delay: 0.2s;
}

.handwriting-word:nth-child(2) {
    animation-delay: 0.6s;
}

.handwriting-word:nth-child(3) {
    animation-delay: 1s;
}

.handwriting-word:nth-child(4) {
    animation-delay: 1.4s;
}

@keyframes handwritingAppear {
    0% {
        opacity: 0;
        transform: translateX(-10px) translateY(5px) rotate(-3deg);
        filter: blur(2px);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-3px) translateY(2px) rotate(-1deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
        filter: blur(0);
    }
}

/* Ink flow effect - sanki mürekkep akıyor */
/* .brand-text {
/*     position: relative;
/* }

/* .brand-text::before {
/*     content: '';
/*     position: absolute;
/*     top: 0;
/*     left: 0;
/*     width: 0;
/*     height: 100%;
/*     background: linear-gradient(90deg, transparent, rgba(92, 64, 51, 0.1), transparent);
/*     animation: inkFlow 2.2s ease-out;
/*     pointer-events: none;
/* }

@keyframes inkFlow {
    0% {
        width: 0;
        left: 0;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

/* Scroll sonrası animasyon tekrarlanmaz */
.navbar.scrolled .handwriting-word {
    animation: none;
    opacity: 1;
}

/* .navbar.scrolled .brand-text::before {
/*     display: none;
/* }

/* Karakter Bazlı El Yazısı Animasyonu */
.handwriting-char {
    opacity: 0;
    animation: writeChar 0.3s ease-out forwards;
    transform-origin: left bottom;
}

@keyframes writeChar {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.8) rotate(-5deg);
        filter: blur(3px);
    }
    40% {
        opacity: 0.5;
        transform: translateY(4px) scale(0.95) rotate(-2deg);
        filter: blur(1.5px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(1px) scale(1.02) rotate(1deg);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

/* Kalem çizme efekti */
@keyframes penStroke {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Mürekkep parlama efekti */
/* .brand-text {
/*     animation: textGlow 0.5s ease-out 2s;
/* }

@keyframes textGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

/* Ziyaretçi İstatistik Kartları - Ekstra Garanti */
.visitor-counter .row {
    align-items: stretch !important;
}

.visitor-counter [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
}

.visitor-counter [class*="col-"] .counter-box {
    flex: 1 !important;
}

/* Tüm kartların kesinlikle eşit boyutta olmasını garantile */
.visitor-counter .counter-box {
    aspect-ratio: unset !important;
}

/* Label uzunluğu farklı olsa bile kart boyutu değişmesin */
.visitor-counter .counter-label {
    overflow: visible !important;
    text-overflow: clip !important;
}

/* ==============================================
   BASINDA BIZ SECTION
   ============================================== */

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

.press-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.press-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.press-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.press-source {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.press-content {
    padding: 25px;
}

.press-date {
    color: #8B4513;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.press-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.press-card:hover .press-content h3 {
    color: #8B4513;
}

.press-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.press-link {
    color: #DAA520;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.press-link:hover {
    color: #8B4513;
    gap: 12px;
}

/* Gazete kupürü efekti */
.press-card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23DAA520'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
}

@media (max-width: 991px) {
    .press-image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .press-image {
        height: 180px;
    }
    
    .press-content {
        padding: 20px;
    }
    
    .press-content h3 {
        font-size: 1.1rem;
    }
}

/* =====================================================
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer düzenleme */
.footer h4 {
    color: #DAA520;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #DAA520;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.7);
}

.footer-contact li i {
    color: #DAA520;
    margin-right: 10px;
    margin-top: 4px;
    min-width: 16px;
}


/* =====================================================

.counter-box {
    flex: 1;
    min-width: 80px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.counter-box:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.counter-box i {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
}

.counter-box.online i {
    color: #28a745;
    animation: pulse 1.5s infinite;
}

.counter-box.today i {
    color: #DAA520;
}

.counter-box.total i {
    color: #17a2b8;
}

.counter-box .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.counter-box .label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Mobil için */
@media (max-width: 991px) {
    .visitor-counter-horizontal {
        justify-content: center;
    }
    .counter-box {
        min-width: 90px;
    }
}


/* =====================================================

.branch-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.branch-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.branch-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.branch-info h5 {
    color: #DAA520;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.branch-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Footer İletişim Linkleri */
.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #DAA520;
}

/* Footer Hızlı Linkler */
.footer-quick-link {
    display: inline-block;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-right: 15px;
    margin-bottom: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-quick-link:hover {
    color: #DAA520;
}

/* Mobil için şube kartları */
@media (max-width: 767px) {
    .branch-card {
        padding: 12px;
    }
    
    .branch-icon {
        width: 40px;
        height: 40px;
    }
    
    .branch-info h5 {
        font-size: 0.95rem;
    }
    
    .branch-info p {
        font-size: 0.8rem;
    }
}


/* =====================================================
   FOOTER - TEMİZ TASARIM
   ===================================================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 0 0;
}

.footer-title {
    color: #DAA520;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-link:hover {
    color: #DAA520;
}

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

.footer-link.whatsapp:hover {
    color: #128C7E;
}

/* Footer Sosyal Medya */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #DAA520;
    transform: translateY(-3px);
}

/* Ziyaretçi Sayacı */
.visitor-stats {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
}

.visitor-stats span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    padding: 5px 0;
}

.visitor-stats i {
    width: 20px;
    margin-right: 8px;
}

.visitor-stats .text-success {
    color: #28a745 !important;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-title {
        margin-top: 10px;
    }
}

