/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ana Renkler */
    --primary-color: #8B1E29;
    --primary-dark: #6B1720;
    --primary-light: #AB2533;
    --secondary-color: #2C3E50;
    --accent-color: #E74C3C;
    
    /* Nötr Renkler */
    --text-color: #333333;
    --light-gray: #f0f2f5;
    --medium-gray: #e9ecef;
    --dark-gray: #666666;
    --white: #FFFFFF;
    
    /* Gölgeler */
    --shadow-sm: 0 1.7px 3.4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 3.4px 5.1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8.5px 12.75px rgba(0, 0, 0, 0.1);
    
    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 3.4px;
    --radius-md: 6.8px;
    --radius-lg: 13.6px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 0.21rem;
    --space-sm: 0.425rem;
    --space-md: 0.85rem;
    --space-lg: 1.275rem;
    --space-xl: 1.7rem;
    
    /* Container Max Widths */
    --container-sm: 459px;
    --container-md: 612px;
    --container-lg: 816px;
    --container-xl: 969px;
    
    /* Yeni Gradient Renkler */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-light: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    --gradient-white: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

html {
    scroll-behavior: smooth;
    font-size: 85%; /* 15% reduction from default 100% */
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-gray);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.275rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: all 0.4s ease;
    background: transparent;
    width: 100%;
}

/* Navbar scrolled durumu */
.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.logo {
    position: relative;
    height: 34px;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.logo img {
    height: 30px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

.logo-white {
    opacity: 1;
    display: block;
}

.logo-color {
    opacity: 0;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
}

/* Logo scrolled durumu */
.navbar.navbar-scrolled .logo-white {
    opacity: 0;
    display: none;
}

.navbar.navbar-scrolled .logo-color {
    opacity: 1;
    display: block;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    z-index: 9998;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    color: var(--white);
}

/* Navbar scrolled link renkleri */
.navbar.navbar-scrolled .nav-links a {
    color: var(--primary-color);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.navbar.navbar-scrolled .nav-links a:not(.cta-button):hover {
    color: var(--primary-dark);
}

/* Link hover efekti */
.nav-links a:not(.cta-button):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.navbar.navbar-scrolled .nav-links a:not(.cta-button):after {
    background-color: var(--primary-color);
    box-shadow: 0 1px 2px rgba(139, 30, 41, 0.1);
}

/* CTA Button styles */
.nav-links .cta-button {
    background: var(--white);
    color: var(--primary-color) !important;
    padding: 0.68rem 1.275rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Scroll durumu - CTA buton */
.navbar.navbar-scrolled .nav-links .cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(139, 30, 41, 0.2);
}

.navbar.navbar-scrolled .nav-links .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 30, 41, 0.3);
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 9999;
}

.navbar.navbar-scrolled .menu-icon {
    color: var(--primary-color);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #9c0d38 0%, #cc1c4e 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 998;
        padding: 2rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
        text-decoration: none;
        position: relative;
        padding: 0.75rem 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        font-weight: 500;
        letter-spacing: 0.5px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0.5rem;
        width: 0;
        height: 2px;
        background: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links a:hover::after {
        width: 50%;
    }

    .nav-links .cta-button {
        background: rgba(255, 255, 255, 0.9);
        color: #cc1c4e;
        padding: 0.8rem 2rem;
        border-radius: 30px;
        margin-top: 1rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        width: auto;
    }

    .nav-links .cta-button:hover {
        background: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links .cta-button::after {
        display: none;
    }

    .menu-icon {
        display: block;
        position: relative;
        z-index: 999;
        cursor: pointer;
        padding: 0.5rem;
    }

    .menu-icon i {
        color: white;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .navbar.navbar-scrolled .menu-icon i {
        color: #9c0d38;
    }

    .menu-icon.active i {
        color: white;
    }

    /* Animasyon gecikmeleri */
    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .logo {
        height: 24px;
    }

    .logo img {
        height: 24px;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

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

    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-cta a {
        width: 100%;
        justify-content: center;
    }

    .products {
        padding: 4rem 1.5rem;
    }

    .products h2 {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.7rem;
    }

    .msp-model {
        padding: 4rem 1.5rem;
    }

    .msp-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .msp-feature {
        padding: 1.5rem;
    }

    .msp-feature::before,
    .msp-feature::after {
        width: 60px;
        height: 60px;
    }

    .contact {
        padding: 4rem 1.5rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-info {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
        gap: 2rem;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.8rem;
    }

    .floating-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .product-card:hover,
    .msp-feature:hover {
        transform: none;
    }

    .product-card::before,
    .product-card::after,
    .msp-feature::before,
    .msp-feature::after {
        width: 50px;
        height: 50px;
    }

    .product-card:active,
    .msp-feature:active {
        transform: scale(0.98);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Form Container Düzenlemeleri */
    .contact-container {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.25rem;
        margin-top: 1rem;
    }

    /* Form Grid Düzenlemesi */
    .form-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Form Elemanları */
    .form-group {
        margin-bottom: 1rem;
        position: relative;
    }

    .form-control {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background: #fff;
    }

    .form-label {
        position: absolute;
        left: 0.75rem;
        top: 0.75rem;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        pointer-events: none;
        color: #666;
    }

    .form-control:focus + .form-label,
    .form-control:not(:placeholder-shown) + .form-label {
        transform: translateY(-1.4rem);
        font-size: 0.75rem;
        color: var(--primary-color);
        background: #fff;
        padding: 0 0.25rem;
    }

    /* WhatsApp Butonu */
    .whatsapp-button {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1rem 2rem 1rem 3.5rem;
        background: #25D366;
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .whatsapp-button::after {
        content: '👆';
        position: absolute;
        left: 1.2rem;
        top: 50%;
        font-size: 1.4rem;
        transform: translateY(-50%) rotate(90deg);
        animation: tapButton 1s ease-in-out infinite;
    }

    @keyframes tapButton {
        0% {
            transform: translateY(-50%) rotate(90deg) scale(1);
            opacity: 0.7;
        }
        50% {
            transform: translateY(-50%) rotate(90deg) scale(0.85);
            opacity: 1;
        }
        100% {
            transform: translateY(-50%) rotate(90deg) scale(1);
            opacity: 0.7;
        }
    }

    .whatsapp-button:hover {
        background: #128C7E;
        transform: translateY(-2px);
    }

    .whatsapp-button:hover::after {
        animation-play-state: paused;
    }

    @media (max-width: 768px) {
        .whatsapp-button {
            width: 100%;
            padding: 0.9rem 1.5rem 0.9rem 3rem;
        }
        
        .whatsapp-button::after {
            left: 1rem;
            font-size: 1.2rem;
        }
    }

    /* Submit Butonu */
    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }

    /* Select Elementi */
    select.form-control {
        appearance: none;
        padding-right: 2rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.5rem center;
    }

    /* Textarea */
    textarea.form-control {
        min-height: 100px;
        resize: vertical;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .product-card,
    .msp-feature {
        padding: 1.2rem;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 8.5rem 0 4.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.55rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.275rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.hero-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-icon i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    font-weight: 600;
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
    margin: 1.5rem 0;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}

.highlight-text span {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.highlight-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: highlight-line 2s infinite;
}

.highlight-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: highlight-line 2s infinite reverse;
}

@keyframes highlight-line {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 300% center;
    }
}

@media (max-width: 768px) {
    .highlight-text {
        font-size: 1.1rem;
        margin: 1rem 0;
        padding: 0.4rem 0;
    }

    .highlight-text span {
        color: rgba(255, 255, 255, 0.98);
    }
}

.cta-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-cta, .contact-cta {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 160px;
    max-width: 250px;
    text-align: center;
    white-space: nowrap;
}

.whatsapp-cta i, .contact-cta i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.whatsapp-cta span, .contact-cta span {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatsapp-cta {
    background: #25D366;
    color: white;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.95);
    color: #cc1c4e;
}

@media (max-width: 768px) {
    .cta-container {
        padding: 0 1rem;
        gap: 0.8rem;
    }

    .whatsapp-cta, .contact-cta {
        padding: 0.7rem 0.8rem;
        min-width: 140px;
        font-size: clamp(0.75rem, 3vw, 0.9rem);
    }

    .whatsapp-cta i, .contact-cta i {
        font-size: 1.1rem;
    }
}

@media (max-width: 380px) {
    .whatsapp-cta, .contact-cta {
        font-size: 0.75rem;
        padding: 0.7rem 0.6rem;
        gap: 0.3rem;
    }
}

.hero-badges {
    margin-top: 2.5rem;
}

.badge-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.badge i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 24px;
    text-align: center;
}

.badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .cta-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .whatsapp-cta, .contact-cta {
        width: 100%;
        min-width: unset;
        padding: 0.7rem 0.5rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .whatsapp-cta i, .contact-cta i {
        font-size: 1.1rem;
    }

    .cta-divider {
        display: none;
    }

    .hero-badges {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }

    .badge-grid {
        gap: 0.8rem;
    }

    .badge {
        text-align: left;
        padding: 0.5rem 0.8rem;
        background: rgba(255, 255, 255, 0.08);
    }

    .badge i {
        font-size: 1rem;
        min-width: 20px;
    }

    .badge span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Products Section */
.products {
    padding: 6rem 5%;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.products h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #9c0d38, #bf0f45);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-icon {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-icon i {
    font-size: 2rem;
    color: #9c0d38;
    min-width: 2rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon i {
    color: #ffffff;
}

.product-icon h3 {
    margin: 0;
    color: #9c0d38;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon h3 {
    color: #ffffff;
}

.product-card ul {
    list-style: none;
    padding-left: 3.5rem;
    margin: 0;
}

.product-card li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.product-card:hover li {
    color: rgba(255, 255, 255, 0.9);
}

.product-card li:last-child {
    margin-bottom: 0;
}

.product-card li i {
    color: #9c0d38;
    font-size: 0.9rem;
    min-width: 0.9rem;
    transition: all 0.3s ease;
}

.product-card:hover li i {
    color: #ffffff;
}

@media (max-width: 768px) {
    .product-card {
        padding: 1.5rem;
    }

    .product-icon {
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .product-icon i {
        font-size: 1.8rem;
        min-width: 1.8rem;
    }

    .product-icon h3 {
        font-size: 1.2rem;
    }

    .product-card ul {
        padding-left: 3rem;
    }

    .product-card li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-card:hover .product-cta {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .products {
        padding: 4rem 1.5rem;
    }

    .products h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: var(--space-md);
    }
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: var(--gradient-white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--section-pattern);
    opacity: 0.6;
    transform: rotate(45deg);
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Why Us Section */
.why-us {
    background: var(--gradient-light);
    padding: 5rem 5%;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-3px);
}

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

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background: var(--white);
    text-align: center;
}

.pricing h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.feature i {
    color: var(--primary-color);
}

.pricing-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: var(--transition);
}

.pricing-cta:hover {
    background: var(--primary-dark);
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--section-pattern);
    opacity: 0.4;
}

.contact-container {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.whatsapp-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem 1rem 3.5rem;
    background: #25D366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-button::after {
    content: '👆';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    font-size: 1.4rem;
    transform: translateY(-50%) rotate(90deg);
    animation: tapButton 1s ease-in-out infinite;
}

@keyframes tapButton {
    0% {
        transform: translateY(-50%) rotate(90deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) rotate(90deg) scale(0.85);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) rotate(90deg) scale(1);
        opacity: 0.7;
    }
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-button:hover::after {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 100%;
        padding: 0.9rem 1.5rem 0.9rem 3rem;
    }
    
    .whatsapp-button::after {
        left: 1rem;
        font-size: 1.2rem;
    }
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.form-control:focus {
    border: 1px solid #cc1c4e;
    box-shadow: 0 0 5px rgba(204,28,78,0.3);
    outline: none;
}

.select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.form-label {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-normal);
    pointer-events: none;
    color: var(--dark-gray);
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: 0;
    transform: translateY(-50%) scale(0.8);
    background: var(--white);
    padding: 0 var(--space-xs);
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #9c0d38 0%, #cc1c4e 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

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

.submit-btn i {
    font-size: 18px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8B1E29 0%, #9c0d38 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
}

.partner-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.partner-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-branding {
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-logo {
        height: 32px;
    }

    .company-description {
        font-size: 0.9rem;
    }

    .partner-logo {
        height: 35px;
    }
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem auto;
    width: 80%;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-products li {
    margin-bottom: 0.8rem;
}

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

.footer-products a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item.address {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-item.address:hover {
    color: rgba(255, 255, 255, 0.9);
}

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

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

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

.footer-links a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-button i {
    font-size: 1.5rem;
    color: white;
}

.floating-button.whatsapp-button {
    background: #25D366;
}

.floating-button.mail-button {
    background: #cc1c4e;
}

.floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-button[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    right: 100%;
    margin-right: 10px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-button:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-branding {
        align-items: center;
    }

    .footer-logo {
        height: 30px;
        margin-bottom: 0.8rem;
    }

    .partner-logo {
        height: 30px;
        margin-bottom: 0.8rem;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-item.address {
        max-width: 300px;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 0.8rem;
    }

    .floating-button {
        width: 45px;
        height: 45px;
    }

    .floating-button[data-tooltip]:before {
        display: none;
    }

    .divider {
        margin: 0.8rem auto;
    }
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-content .subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-content .feature-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-content .highlight-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-cta {
    opacity: 0;
    animation: scaleIn 0.8s ease forwards;
    animation-delay: 1s;
}

.hero-cta .whatsapp-cta {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 1.2s;
    transform-origin: center;
}

.hero-cta .contact-cta {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 1.2s;
    transform-origin: center;
}

.hero-badges {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.4s;
}

.hero-badges .badge {
    opacity: 0;
    display: inline-block;
    animation: scaleIn 0.5s ease forwards;
}

.hero-badges .badge:nth-child(1) {
    animation-delay: 1.6s;
}

.hero-badges .badge:nth-child(2) {
    animation-delay: 1.8s;
}

.hero-badges .badge:nth-child(3) {
    animation-delay: 2s;
}

/* Badge hover effect */
.badge {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
}

/* Button hover animations */
.whatsapp-cta, .contact-cta {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-cta:hover, .contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-cta:active, .contact-cta:active {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-content .feature-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-cta a {
        width: 100%;
        padding: 0.85rem;
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .badge {
        width: 100%;
        padding: 0.75rem;
        justify-content: center;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }

    .badge i {
        margin-right: 0.5rem;
    }

    /* Floating butonlar için düzenleme */
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }

    .floating-button {
        width: 3rem;
        height: 3rem;
    }
}

/* Daha küçük ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

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

    .badge {
        font-size: 0.9rem;
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--accent-color);
}

.form-group input.error ~ label,
.form-group textarea.error ~ label,
.form-group select.error ~ label {
    color: var(--accent-color);
}

/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Disabled Button State */
.submit-btn:disabled {
    background: var(--dark-gray);
    cursor: not-allowed;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5em;
    border: 2px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

/* Hero Section Updates */
.feature-text {
    font-size: 1.4rem;
    margin: 1.5rem 0;
    color: var(--white);
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.whatsapp-cta, .contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-cta {
    background: #25D366;
    color: var(--white);
}

.contact-cta {
    background: var(--white);
    color: var(--primary-color);
}

.whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.contact-cta:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* MSP Model Section */
.msp-model {
    padding: 5rem 5%;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.msp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.msp-feature {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.msp-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #9c0d38, #bf0f45);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.msp-feature i {
    font-size: 2.2rem;
    color: #9c0d38;
    transition: all 0.3s ease;
    min-width: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.msp-feature:hover i {
    color: #ffffff;
}

.msp-feature .feature-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.msp-feature h3 {
    margin: 0 0 0.5rem 0;
    color: #9c0d38;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.msp-feature:hover h3 {
    color: #ffffff;
}

.msp-feature p {
    color: #666666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
    transition: all 0.3s ease;
}

.msp-feature:hover p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .msp-model {
        padding: 4rem 1.5rem;
    }

    .msp-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .msp-feature {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .msp-feature i {
        font-size: 2rem;
        min-width: 2rem;
    }

    .msp-feature h3 {
        font-size: 1.2rem;
    }

    .msp-feature p {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

/* Sectors Section */
.sectors {
    padding: 5rem 5%;
    background: var(--gradient-light);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto 0;
}

.sector-card {
    text-align: left;
    padding: 2rem;
    background: var(--gradient-white);
    border-radius: 15px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sector-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sector-card h3 {
    margin: 1rem 0;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.sector-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.sector-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.sector-features li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.95rem;
}

.sector-features li i {
    font-size: 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
    background: var(--gradient-white);
    position: relative;
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    width: 100%;
}

.faq-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    background: var(--gradient-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--gradient-white);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.faq-icon {
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-color);
    background: var(--gradient-white);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
    line-height: 1.4;
}

.faq-answer li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

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

.protection-item {
    background: var(--gradient-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

.protection-item h4 {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.protection-item p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .protection-features {
        grid-template-columns: 1fr;
    }
}

/* Animasyonlar */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
}

.close-modal:hover {
    background: var(--medium-gray);
    color: var(--text-color);
    transform: rotate(90deg);
}

.modal h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 1.5rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-options {
        flex-direction: column;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem;
    }

    .modal h2 {
        font-size: 1.8rem;
    }
}

/* Animasyon için */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal.animate {
    animation: modalFadeIn 0.3s ease forwards;
}

/* Form Error Styles */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #dc3545;
}

.form-group.has-error input ~ label,
.form-group.has-error textarea ~ label,
.form-group.has-error select ~ label {
    color: var(--accent-color);
}

/* Loading Animation */
.loading-text {
    position: relative;
    padding-right: 24px;
}

.loading-text::after {
    content: '...';
    position: absolute;
    right: 0;
    animation: loading 1s infinite;
}

@keyframes loading {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal.show {
    opacity: 1;
}

.success-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.success-modal.show .success-content {
    transform: translateY(0);
}

.success-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.success-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-content p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-content button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.success-content button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .success-content {
        padding: 2rem;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-button i {
    font-size: 1.5rem;
    color: white;
}

.floating-button.whatsapp-button {
    background: #25D366;
}

.floating-button.mail-button {
    background: #cc1c4e;
}

.floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-button[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    right: 100%;
    margin-right: 10px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-button:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .success-content {
        padding: 2rem;
    }
}

/* Responsive Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: var(--space-md);
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Modern Container */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 1020px) {
    .container {
        max-width: 85%;
    }
}

@media (max-width: 843px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 652px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.125rem;
    }
    
    .hero .subtitle {
        font-size: 1.105rem;
    }
}

@media (max-width: 319px) {
    .hero h1 {
        font-size: 1.785rem;
    }
    
    .hero .subtitle {
        font-size: 0.935rem;
    }
}

.footer-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.footer-map {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin: 1rem 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .footer-map {
        height: 150px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 4%;
    padding-left: 4%;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 768px) {
    .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #8B1E29 0%, #9c0d38 100%);
    position: relative;
    padding: 0;
}

.hero-content {
    padding-top: 120px;
    padding-bottom: 60px;
}

.products, .msp-model, .contact {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .products, .msp-model, .contact {
        padding: 40px 0;
    }
}

.footer {
    background: linear-gradient(135deg, #8B1E29 0%, #9c0d38 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-branding, .partner-section, .footer-products, .footer-contact {
        padding: 0;
    }
}