@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --primary-dark: #020617;
    --accent: #FFA500;
    --accent-light: #FFB732;
    --accent-dark: #FF8C00;
    --accent-glow: rgba(255, 165, 0, 0.15);
    
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-dark: #0F172A;
    
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --text-light: #CBD5E1;
    --text-white: #FFFFFF;
    
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(255, 165, 0, 0.1);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

::selection {
    background-color: var(--accent);
    color: var(--text-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-jakarta);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: all var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

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

.container {
    max-width: 1320px;
    padding: 0 1rem;
    margin: 0 auto;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-light);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.top-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 2px solid var(--accent);
    position: relative;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .col-md-8,
.top-bar .col-md-4 {
    display: flex;
    align-items: center;
}

.top-bar .col-md-4 {
    justify-content: flex-end;
}

.top-bar span {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 1rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.top-bar i {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 0.75rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
}

.top-bar a:hover {
    color: var(--text-white);
    background: var(--accent);
    transform: translateY(-2px) scale(1.1);
}

.navbar {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 4.5rem;
    width: auto;
    transition: all var(--transition);
}

.navbar-brand .logo-dark {
    display: none;
}

.navbar-brand .logo-light {
    display: block;
}

/* Scroll edildiğinde logo küçülsün */
.navbar.scrolled .navbar-brand img {
    height: 3.5rem;
}

/* Logo hover efekti */
.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 165, 0, 0.3));
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-collapse {
    transition: all var(--transition);
}

body.mobile-menu-open {
    overflow: hidden;
}

.nav-item {
    position: relative;
}

@media (min-width: 993px) {
    .nav-link {
        display: flex;
        align-items: center;
        padding: 0.75rem 1.25rem;
        color: var(--text-primary);
        font-weight: 500;
        font-size: 0.9375rem;
        letter-spacing: 0.025em;
        border-radius: var(--radius);
        transition: all var(--transition-fast);
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
        transform: translateX(-50%);
        transition: width var(--transition);
        border-radius: var(--radius-full);
    }

    .nav-link:hover {
        color: var(--accent);
        background: rgba(255, 165, 0, 0.05);
        transform: translateY(-2px);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 60%;
    }

    .nav-link.active {
        color: var(--accent);
        font-weight: 600;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    padding: 0.75rem;
    margin-top: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
    font-weight: 400;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.03) 100%);
    color: var(--accent);
    padding-left: 1.25rem;
    font-weight: 500;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0.5rem 0;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    cursor: pointer;
    width: 44px;
    height: 44px;
    transition: all var(--transition);
}

.navbar-toggler:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: scale(1.05);
}

.navbar-toggler span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
    display: block;
}

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

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(15, 23, 42, 0.7) 50%,
        rgba(255, 165, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: heroTitle 1s ease-out;
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: heroText 1s ease-out 0.2s backwards;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.025em;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
    color: var(--text-white);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.section-padding {
    padding: 6rem 0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.page-header::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 1200 120"><path fill="%23ffffff10" d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-header h1 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.page-header .breadcrumb-item.active {
    color: var(--accent);
    font-weight: 500;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-full);
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.product-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

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

.product-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    flex-grow: 1;
    transition: color var(--transition-fast);
}

.product-card:hover .product-title {
    color: var(--accent);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-price .old-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-price span:not(.old-price) {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-box {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
    transition: all var(--transition);
}

.service-box:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.service-box h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-box p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.counter-box {
    text-align: center;
}

.counter-box i {
    color: var(--accent);
    margin-bottom: 1rem;
}

.counter-box h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.counter-box p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.25rem;
}

.testimonial-box {
    display: none;
}

.testimonial-slider {
    display: none;
}

.rating {
    display: none;
}

.partner-logo {
    padding: 0.5rem;
    transition: all var(--transition);
}

.partner-logo > div {
    transition: all var(--transition);
}

.partner-logo:hover > div {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent) !important;
}

.partner-logo svg {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition);
}

.partner-logo:hover svg {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding-top: 4rem;
}

.footer-widget h4 {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: left;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-full);
}

.footer-widget p {
    color: var(--text-light);
    line-height: 1.75;
    text-align: left;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
    transition: all var(--transition-fast);
    text-align: left;
}

.footer-widget ul li a {
    color: var(--text-light);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-widget ul li:hover {
    transform: translateX(5px);
}

.footer-widget ul li a:hover {
    color: var(--accent);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-align: left;
}

.footer-contact li i {
    color: var(--accent);
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.125rem;
    min-width: 20px;
}

.footer-contact li span {
    text-align: left;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-white);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--accent);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-xl);
    z-index: 100;
    transition: all var(--transition);
    animation: whatsappPulse 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--text-white);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-white);
    transform: translateY(-5px);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: var(--radius-full);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem;
}

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

.bg-white {
    background: var(--bg-primary);
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.grayscale {
    filter: grayscale(100%);
}

[data-aos] {
    transition-property: transform, opacity;
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: flex;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        transition: all var(--transition);
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-collapse.show {
        right: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        border-radius: 0;
        font-size: 1rem;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        padding-left: 1.5rem;
        background: var(--bg-secondary);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-secondary);
        display: none;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding-left: 2rem;
        font-size: 0.9rem;
    }
    
    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .top-bar {
        display: none;
    }
    
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .navbar-brand img {
        height: 3.5rem;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 3rem;
    }
    
    .footer-bottom .container > .row > div {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }
    
    .back-to-top {
        right: 5rem;
    }
}

/* Mobil menü stilleri - tüm ekran boyutları için */
.mobile-menu-header,
.mobile-menu-footer,
.mobile-contact-info,
.mobile-social-links {
    display: none !important;
}

@media (max-width: 992px) {
    .mobile-menu-header,
    .mobile-menu-footer,
    .mobile-contact-info,
    .mobile-social-links {
        display: flex !important;
    }
    
    .mobile-menu-header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .mobile-menu-footer {
        display: block !important;
    }
    
    .mobile-social-links {
        justify-content: flex-start !important;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .counter-box h3 {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.9375rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .page-header .breadcrumb-item {
        font-size: 0.875rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .service-box {
        padding: 2rem 1.5rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    /* TAM EKRAN MOBİL MENÜ - SİMPLE */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 99999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    /* Mobil menü header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        background: white;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-menu-logo img {
        height: 2.5rem;
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent);
        color: white;
        border: none;
        border-radius: var(--radius);
        font-size: 1.25rem;
        cursor: pointer;
        transition: transform 0.3s;
    }
    
    .mobile-menu-close:hover {
        transform: rotate(90deg);
    }
    
    /* Menü öğeleri */
    .navbar-nav {
        padding: 1rem 0;
        flex-grow: 1;
    }
    
    .nav-item {
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        transition: all 0.2s;
    }
    
    .nav-link i {
        margin-right: 0.75rem;
        color: var(--accent);
        width: 20px;
    }
    
    .nav-link:hover {
        background: var(--bg-secondary);
        padding-left: 2rem;
        color: var(--accent);
    }
    
    .nav-link.active {
        background: var(--accent);
        color: white;
    }
    
    .nav-link.active i {
        color: white;
    }
    
    .nav-link::before {
        display: none;
    }
    
    /* Dropdown */
    .dropdown-menu {
        position: static;
        display: none;
        background: var(--bg-tertiary);
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.5rem 0.75rem 3rem;
        color: var(--text-secondary);
        font-size: 0.875rem;
        border-bottom: 1px solid var(--border-light);
    }
    
    .dropdown-item:hover {
        background: var(--bg-secondary);
        color: var(--accent);
    }
    
    /* Footer alanı */
    .mobile-menu-footer {
        margin-top: auto;
        padding: 1.5rem;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border);
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.875rem;
    }
    
    .mobile-contact-item:hover {
        color: var(--accent);
    }
    
    .mobile-contact-item i {
        color: var(--accent);
        width: 20px;
    }
    
    .mobile-social-links {
        display: flex;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-light);
    }
    
    .mobile-social-links a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: white;
        border-radius: var(--radius);
        font-size: 1rem;
    }
    
    .mobile-social-links a:hover {
        background: var(--accent);
    }
    
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        right: 4rem;
        width: 40px;
        height: 40px;
    }
}