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

html {
    scroll-padding-top: 88px;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #b91c1c;
    --accent-color: #ef4444;
    --logo-black: #111111;
    --text-dark: #1f2937;
    --text-light: #64748b;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --font-heading: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

body.loading {
    overflow: hidden;
}

/* Loading Animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    width: 200px;
    height: auto;
    animation: logoFadeIn 1s ease-out;
}

.loader-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.loader-progress {
    width: 100%;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Yükleyici: sepet + yazarkasa + yemek (sitedeki ürün ikonlarıyla aynı) */
.loader-sigils {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    justify-content: center;
}

.loader-sigil {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: sigilFloat 2.4s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.loader-sigil:nth-child(1) {
    animation-delay: 0s;
}

.loader-sigil:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-sigil:nth-child(3) {
    animation-delay: 0.4s;
}

.loader-sigil i {
    font-size: 1.28rem;
    color: #fff;
    opacity: 0.96;
}

@keyframes sigilFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.88;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    }
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 10px;
    animation: progressLoad 3s ease-in-out;
    width: 0%;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

.loader-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    animation: pulse 1.5s ease-in-out infinite;
    margin-top: 1rem;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.dropdown-menu a i {
    width: 24px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.dropdown-menu a .nav-icon-duo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 28px;
    flex-shrink: 0;
}

.dropdown-menu a .nav-icon-duo i {
    width: auto;
    min-width: 0;
    font-size: 0.88rem;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: -0.02em;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Menüdeki Müşteri Girişi butonu kırmızı */
.nav-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.nav-actions .btn-secondary i {
    font-size: 0.9em;
    opacity: 0.95;
}

.nav-actions .btn-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section with Slider (sol görsel, sağ metin) */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: stretch;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 520px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-slide-inner {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.hero-slide-left {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.hero-slide-right {
    flex: 0 0 50%;
    background: white;
    display: flex;
    align-items: center;
    padding: 3rem 4rem;
}

.hero-content {
    max-width: 480px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(1.85rem, 2.5vw + 1rem, 2.65rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.12;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.72;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.btn-hero-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-detail:hover {
    background: var(--primary-color);
    color: white;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 16px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
}

.hero-content .hero-title {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-content .hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-content .btn-hero-detail {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-primary {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Hero Features Section */
.hero-features {
    background: var(--bg-light);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hero-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(220, 38, 38, 0.12);
}

.hero-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.hero-feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.hero-feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.hero-feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.hero-feature-link:hover {
    gap: 1rem;
}

/* Products Section */
.products {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

.product-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-image i {
    font-size: 3rem;
    color: white;
}

.product-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.72;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
}

/* POS Integration Section */
.pos-integration {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 80px 0;
}

.pos-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pos-text h2 {
    font-size: clamp(1.85rem, 2vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.pos-text h3 {
    font-size: clamp(1.35rem, 1.5vw, 1.65rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.pos-text > p {
    font-size: 1.0625rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.72;
    letter-spacing: -0.01em;
}

.pos-image-box {
    max-width: 480px;
    margin: 0 auto 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: #f5f5f5;
}

.pos-image-box img {
    width: 100%;
    height: clamp(260px, 36vw, 360px);
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.pos-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pos-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.pos-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pos-feature i {
    color: var(--success-color);
    font-size: 1.8rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pos-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.pos-feature p {
    color: var(--text-light);
    line-height: 1.72;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.85rem, 1.5vw + 1.5rem, 2.65rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.72;
    letter-spacing: -0.015em;
    font-weight: 400;
}

/* Features Section */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Çözüm Net bölümü – resimli kutucuklar (dikdörtgen) */
.feature-icon.feature-icon-img {
    width: 100%;
    max-width: 200px;
    height: 140px;
    border-radius: 6px;
    padding: 0;
    background: #f0f0f0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.72;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.feature-link:hover {
    gap: 1rem;
}

/* Additional Features */
.additional-features {
    background: var(--bg-light);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.additional-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
}

.additional-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-icon-duo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.additional-icon-duo i {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.additional-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.additional-item p {
    color: var(--text-light);
    line-height: 1.72;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.85rem, 2vw, 2.45rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.72;
    letter-spacing: -0.01em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--logo-black);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section .logo {
    margin-bottom: 1rem;
}

.footer-section .logo-img {
    height: 55px;
}

.rating {
    margin-top: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}


.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-hours .day {
    display: inline-flex;
    align-items: center;
    min-width: 150px;
}

.footer-hours .time {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: right;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .hero-features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .pos-feature {
        flex-direction: column;
        text-align: center;
    }

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

    .pos-text h2 {
        font-size: 2rem;
    }

    .pos-text h3 {
        font-size: 1.5rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background: var(--bg-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .hero-slide-inner {
        flex-direction: column;
        min-height: 480px;
    }

    .hero-slide-left,
    .hero-slide-right {
        flex: 0 0 auto;
        min-height: 220px;
    }

    .hero-slide-left {
        min-height: 200px;
    }

    .hero-slide-right {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }

    .hero-content .hero-title {
        font-size: 1.6rem;
    }

    .hero-content .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .slider-btn.prev {
        left: 12px;
    }

    .slider-btn.next {
        right: 12px;
    }

    .logo-img {
        height: 50px;
    }

    .footer-section .logo-img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }
}

/* WhatsApp sabit butonu */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 997;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 16px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
