/* Smartbet.am Complete CSS */

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

:root {
    /* Legacy color mapping for backward compatibility */
    --primary-color: var(--btn-primary-bg, #3b82f6);
    --secondary-color: var(--btn-primary-hover, #2563eb);
    --accent-color: var(--hero-accent, #3b82f6);
    --text-color: var(--text-primary, #1f2937);
    --text-light: var(--text-secondary, #64748b);
    --white: var(--text-white, #ffffff);
    --bg-light: var(--section-alt-bg, #f8fafc);
    --bg-lighter: var(--content-bg, #f9fafb);
    --gray-50: var(--content-bg, #f9fafb);
    --gray-100: var(--border-light, #f3f4f6);
    --gray-200: var(--border-default, #e5e7eb);
    --gray-300: var(--border-dark, #d1d5db);
    --gray-400: var(--text-muted, #9ca3af);
    --gray-500: var(--text-secondary, #64748b);
    --gray-600: var(--text-primary, #1f2937);
    --gray-700: var(--text-primary, #1f2937);
    --gray-800: var(--footer-bg, #1f2937);
    --gray-900: var(--footer-bg, #1f2937);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary, #1f2937);
    background: var(--page-bg, #ffffff);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg, rgba(255, 255, 255, 0.95));
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--header-text, #1f2937);
}

.logo-text {
    background: linear-gradient(135deg, var(--header-text, #1f2937), var(--hero-accent, #3b82f6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-link, #374151);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--nav-link-hover, #3b82f6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.current-language:hover {
    background-color: var(--gray-100);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.language-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dropdown-bg, #ffffff);
    border: 1px solid var(--dropdown-border, #e5e7eb);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 140px;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--gray-100);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: var(--gray-50);
}

.language-option:first-child {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.language-option:last-child {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    color: var(--btn-primary-bg, #3b82f6);
    border: 2px solid var(--btn-primary-bg, #3b82f6);
}

.btn-outline:hover {
    background: var(--btn-primary-bg, #3b82f6);
    color: var(--btn-primary-text, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary {
    background: var(--btn-primary-bg, #3b82f6);
    color: var(--btn-primary-text, #ffffff);
    border: none;
}

.btn-primary:hover {
    background: var(--btn-primary-hover, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-submit {
    background: var(--btn-primary-bg, #3b82f6);
    color: var(--btn-primary-text, #ffffff);
    border: none;
    width: 100%;
    padding: 15px;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--btn-primary-hover, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-highlight {
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-svg {
    width: 450px;
    height: 450px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.rotating {
    animation: rotate 15s linear infinite;
}

.hero-svg:hover {
    animation: rotate 5s linear infinite;
    transform: scale(1.05);
    filter: drop-shadow(0 30px 60px rgba(75, 48, 191, 0.4));
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 48, 191, 0.2);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: linear-gradient(135deg, #312e81, #1e1b4b);
    color: white;
    position: relative;
    overflow: hidden;
}

.products .section-title {
    color: white;
}

.products .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
    scrollbar-width: none;  /* Hide scrollbar Firefox */
}

.products-grid::-webkit-scrollbar {
    display: none;  /* Hide scrollbar Chrome/Safari/Opera */
}

.product-card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-width: 280px;
    height: 100%;
    color: #333;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(75, 48, 191, 0.2);
}

.product-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    padding: 20px;
    opacity: 1 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Görseldeki gibi her ürün için özel gradyanlar */
.casino-icon {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
}

.live-icon {
    background: linear-gradient(135deg, #1e293b 0%, #312e81 50%, #475569 100%);
}

.sports-icon {
    background: linear-gradient(135deg, #334155 0%, #475569 50%, #64748b 100%);
}

.crm-icon {
    background: linear-gradient(135deg, #475569 0%, #64748b 50%, #94a3b8 100%);
}

.platform-icon {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
}

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

.product-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.product-icon:hover img {
    transform: scale(1.1);
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-description {
    color: white;
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 1rem;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: #f5f5f7;
}

.solutions .section-title {
    color: #333;
    background: none;
    -webkit-text-fill-color: #333;
}

.solutions .section-subtitle {
    color: #666;
    margin-bottom: 3rem;
}

.solutions .section-nav {
    position: absolute;
    top: 0;
    right: 0;
}

.solutions .nav-btn {
    background-color: white;
    color: #333;
    border: 1px solid #e0e0e0;
}

.solutions .nav-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
    scrollbar-width: none;  /* Hide scrollbar Firefox */
}

.solutions-grid::-webkit-scrollbar {
    display: none;  /* Hide scrollbar Chrome/Safari/Opera */
}

.solution-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-width: 260px;
    height: 100%;
    max-height: 340px;
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
}

.solution-description {
    color: white;
    line-height: 1.5;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #f0f0f2;
}

.partners .section-title {
    color: #333;
    background: none;
    -webkit-text-fill-color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.partners .section-nav {
    position: absolute;
    top: 0;
    right: 0;
}

.partners .nav-btn {
    background-color: white;
    color: #333;
    border: 1px solid #e0e0e0;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners .nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.partners .nav-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partners-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 0 20px;
}

.devices-mockup {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: auto;
}

.devices-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px;
}

.partner-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid transparent;
    min-width: 150px;
    min-height: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.partner-logo-box img {
    width: auto;
    height: 30px;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.partner-logo.active {
    opacity: 1;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo.active .partner-logo-box {
    border-color: #ffcc00;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.15);
}

/* Providers Section */
.providers {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.provider-logo {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100px;
}

.provider-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.provider-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.provider-logo:hover img {
    filter: grayscale(0);
}

/* Payment Solutions Section */
.payment-solutions {
    padding: 80px 0;
    background: var(--white);
}

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

.payment-logo {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 120px;
}

.payment-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.payment-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info .section-subtitle {
    text-align: left;
    margin: 0;
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(75, 48, 191, 0.1);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.world-map {
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.map-image {
    width: 300px;
    height: 300px;
    filter: grayscale(1);
}

/* Footer */
.footer {
    background: var(--footer-bg, #1f2937);
    color: var(--footer-text, #d1d5db);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 28px;
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: var(--footer-title, #ffffff);
}

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

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--footer-title, #ffffff);
}

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

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--footer-link, #9ca3af);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--footer-link-hover, #ffffff);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--footer-bg, #1f2937);
    color: var(--footer-link, #9ca3af);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--btn-primary-bg, #3b82f6);
    color: var(--footer-title, #ffffff);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.copyright {
    color: var(--footer-text, #d1d5db);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid, 
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-nav {
        position: static;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .world-map {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-logos {
        gap: 1rem;
    }
    
    .partner-logo-box {
        min-width: 130px;
        min-height: 50px;
        padding: 10px 15px;
    }
    
    .partner-logo-box img {
        height: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        height: 60px;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-svg {
        width: 300px;
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        display: flex;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .product-card {
        min-width: 280px;
        max-width: 85vw;
        scroll-snap-align: start;
        margin-right: 10px;
    }
    
    .products .section-nav,
    .solutions .section-nav,
    .partners .section-nav {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        position: relative;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-logos {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 -15px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .partners-logos::-webkit-scrollbar {
        display: none;
    }
    
    .partner-logo {
        min-width: auto;
        scroll-snap-align: center;
    }
    
    .partner-logo-box {
        min-width: 110px;
        min-height: 45px;
        padding: 8px 12px;
    }
    
    .partner-logo-box img {
        height: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-svg {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .partner-logo-box {
        min-width: 100px;
        min-height: 40px;
        padding: 6px 10px;
    }
    
    .partner-logo-box img {
        height: 20px;
    }
}

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

.product-card,
.solution-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }

.solution-card:nth-child(2) { animation-delay: 0.1s; }
.solution-card:nth-child(3) { animation-delay: 0.2s; }
.solution-card:nth-child(4) { animation-delay: 0.3s; }
.solution-card:nth-child(5) { animation-delay: 0.4s; }

/* Loading Animation for Images */
.solution-icon img,
.provider-logo img,
.payment-logo img {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.3s forwards;
}

/* Product icons should be visible immediately */
.product-icon img {
    opacity: 1 !important;
    animation: none !important;
}

/* Partner logos should be visible immediately */
.partner-logo-box img {
    opacity: 1 !important;
    animation: none !important;
}

/* Devices mockup image should also be stable */
.devices-mockup img,
.devices-image,
.current-image {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: opacity 0.2s ease;
    animation: none !important;
}

/* Ensure showcase area is visible and centered */
.partners-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    opacity: 1;
    visibility: visible;
}

.devices-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.devices-mockup img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

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

/* Dropdown menu styles */
.nav-item {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    max-width: 1200px;
    background: var(--dropdown-bg, rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--dropdown-border, rgba(255, 255, 255, 0.2));
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 30px;
    margin-top: 15px;
}

/* Update dropdown hover styles with active class support */
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-arrow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--nav-link-hover, #3b82f6);
}

.dropdown-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    animation: fadeInUp 0.4s ease-out;
}

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

/* Grid layout for specific screen sizes */
@media (min-width: 992px) {
    .dropdown-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .dropdown-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .dropdown-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    
    .dropdown-menu {
        width: calc(100vw - 40px);
        max-width: 100%;
        left: 20px;
        right: 20px;
        transform: translateX(0) translateY(-20px) scale(0.95);
        padding: 20px;
        border-radius: 16px;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        transform: translateX(0) translateY(0) scale(1);
    }
    
    .dropdown-item {
        padding: 16px;
        gap: 16px;
    }
    
    .dropdown-icon {
        width: 45px;
        height: 45px;
    }
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 48, 191, 0.05), rgba(99, 102, 241, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.dropdown-item:hover {
    background: var(--card-bg, rgba(255, 255, 255, 0.8));
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
    border-color: var(--card-border, rgba(74, 48, 191, 0.1));
    box-shadow: 
        0 10px 25px rgba(59, 130, 246, 0.1),
        0 5px 10px rgba(0, 0, 0, 0.05);
}

.dropdown-item:hover::before {
    opacity: 1;
}

.dropdown-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 48, 191, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(74, 48, 191, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.dropdown-item:hover .dropdown-icon {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 8px 20px rgba(74, 48, 191, 0.2);
}

.dropdown-icon img {
    width: 70%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--card-title, #1f2937);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.dropdown-item:hover .dropdown-title {
    color: var(--nav-link-hover, #3b82f6);
}

.dropdown-description {
    font-size: 14px;
    color: var(--card-text, #64748b);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
} 

.dropdown-item:hover .dropdown-description {
    color: var(--text-primary, #1f2937);
}

/* Dropdown title link styles */
.dropdown-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-title a:hover,
.dropdown-item:hover .dropdown-title a {
    color: var(--nav-link-hover, #3b82f6);
}

.dropdown-title a:hover {
    color: var(--nav-link-hover, #3b82f6);
} 

/* Smart Affiliate Page Styles */
.affiliate-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    padding: 80px 0 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Bonus Theme for Product Pages */
.bonus-theme .affiliate-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
}

.bonus-theme .affiliate-hero-text h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-theme .affiliate-hero-text .hero-description,
.bonus-theme .affiliate-hero-text .hero-subdescription {
    color: rgba(255, 255, 255, 0.95);
}

.bonus-theme .advantages {
    background: #ffffff;
}

.bonus-theme .advantages .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-theme .features {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0f8 50%, #f4f0ff 100%);
}

.bonus-theme .features .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.affiliate-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.affiliate-hero-image {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.affiliate-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

.affiliate-hero-text {
    flex: 1;
    color: white;
}

.affiliate-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-subdescription {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Advantages Section for Affiliate */
.advantages {
    padding: 0;
    background: transparent;
    position: relative;
    margin-top: -60px;
    z-index: 2;
}

.advantages .container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2d1b69;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.advantage-card {
    text-align: center;
    padding: 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d1b69;
}

.advantage-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Features Section for Affiliate */
.features {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    padding: 80px 0;
    margin-top: 80px;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 0;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
}

.feature-icon {
    color: #1e293b;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}



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

/* Responsive */
@media (max-width: 768px) {
    .affiliate-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .affiliate-hero-image {
        flex: none;
    }
    
    .affiliate-image {
        width: 200px;
        height: 200px;
    }
    
    .affiliate-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .advantages .container {
        margin: 0 20px;
        padding: 40px 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-text h2 {
        font-size: 1.8rem;
    }
    

} 

/* Company Page Specific Styles */

/* Company Hero Section */
.company-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    color: white;
    padding: 6rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.company-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.company-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.company-hero-subdescription {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-image-large {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 25px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    animation: float 3s ease-in-out infinite;
}

.mission-text-container .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.mission-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text-container .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.vision-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
}

.vision-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-image-large {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 25px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design for Company Page */
@media (max-width: 768px) {
    .company-hero h1 {
        font-size: 2.5rem;
    }
    
    .company-hero-description {
        font-size: 1.1rem;
    }
    
    .company-hero-subdescription {
        font-size: 1rem;
    }
    
    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .mission-text-container,
    .vision-text-container {
        order: 2;
    }
    
    .mission-image-container,
    .vision-image-container {
        order: 1;
    }
    
    .mission-text-container .section-title,
    .vision-text-container .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .mission-description,
    .vision-description {
        font-size: 1rem;
    }
    
    .mission-image-large,
    .vision-image-large {
        max-width: 300px;
    }
} 

/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    color: white;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}



/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

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

.form-input,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-hero-left {
        order: 2;
    }
    
    .contact-hero-right {
        order: 1;
    }
    
    .contact-hero-left h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
    }
    

    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
} 

/* New Homepage Styles - Birebir Görsel Uyumu */

/* Hero Section New */
.hero-new {
    background: var(--hero-bg, #f8fafc);
    color: var(--hero-title, #1f2937);
    padding: 8rem 0 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-new-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-new-left {
    order: 1;
}

.hero-new-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--hero-title, #1f2937);
}

.hero-new-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
    color: var(--hero-subtitle, #64748b);
}

.hero-new-right {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-new {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    animation: rotate 20s linear infinite;
}

/* Products Section New */
.products-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 50%, #e0f2fe 100%);
    color: #333;
}

.section-header-new {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--section-title, #1f2937);
}

.section-subtitle-new {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    color: var(--section-subtitle, #64748b);
}

.section-nav-new {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
}

.nav-btn-new {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav-btn-new:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.products-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding-bottom: 1rem;
}

/* Products carousel wrapper to handle overflow */
.products-carousel-wrapper {
    overflow: hidden;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.product-card-new {
    flex: 0 0 300px;
    background: var(--card-bg, #ffffff);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px var(--card-shadow, rgba(31, 41, 55, 0.1));
    border: 1px solid var(--card-border, #e5e7eb);
    transition: all 0.3s ease;
    color: var(--card-text, #374151);
}

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

.product-icon-new {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--card-title, #1f2937);
}

.product-description-new {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    color: var(--card-text, #374151);
}

/* Solutions Section New */
.solutions-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 50%, #e0f2fe 100%);
}

.solutions-new .section-title-new {
    color: #333;
}

.solutions-new .section-subtitle-new {
    color: #333;
}

.solutions-new .section-header-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
}

.solutions-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.solution-nav-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.3);
}

.solutions-carousel {
    display: flex;
    gap: 2rem;
    overflow: visible;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: max-content;
    padding: 0 1rem;
}

.solutions-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.solution-card-new {
    flex: 0 0 300px;
    width: 300px;
    background: var(--card-bg, #ffffff);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px var(--card-shadow, rgba(31, 41, 55, 0.08));
    border: 1px solid var(--card-border, #e5e7eb);
    transition: all 0.3s ease;
    min-height: 280px;
    margin: 0;
}

.solution-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.solution-icon-new {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--card-title, #1f2937);
}

.solution-description-new {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    color: var(--card-text, #374151);
}

/* Partners Section New */
.partners-new {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
}

.partners-new .section-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partners-new .section-title-new {
    color: white;
    margin-bottom: 0;
    font-size: 2.2rem;
}

.partners-navigation {
    display: flex;
    gap: 1rem;
}

.partner-nav-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(75, 48, 191, 0.3);
}

.partners-showcase-new {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.devices-slider {
    position: relative;
    width: 600px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.devices-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.device-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-slide.active {
    /* Ana görünür slide */
}

.devices-image-new {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}

.device-slide.active .devices-image-new {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}



.partners-logos-new {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.partners-controls {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logo-new {
    min-width: 120px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-logo-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.4), rgba(255,255,255,0.3), rgba(255,215,0,0.4), transparent);
    transition: left 0.5s ease;
}

.partner-logo-new:hover::before {
    left: 100%;
}

.partner-logo-new:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
}

.partner-logo-new.active {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(30, 41, 59, 0.4);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: activeGlow 2s ease-in-out infinite alternate;
}

@keyframes activeGlow {
    0% {
        box-shadow: 0 15px 30px rgba(30, 41, 59, 0.4);
    }
    100% {
        box-shadow: 0 20px 40px rgba(30, 41, 59, 0.6);
    }
}

.partner-logo-new.active .partner-logo-text {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partner-logo-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #DAA520;
    background: linear-gradient(135deg, #FFD700, #FFA500, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .partners-new {
        padding: 3rem 0;
    }
    
    .partners-new .section-header-new {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .devices-slider {
        width: 90%;
        max-width: 450px;
    }
    
    .devices-image-new {
        max-width: 450px;
    }
    
    .partners-controls {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partner-logo-new {
        min-width: 100px;
        height: 45px;
        padding: 0.5rem 0.7rem;
    }
    
    .partner-logo-text {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .partners-new {
        padding: 2.5rem 0;
    }
    
    .devices-slider {
        width: 95%;
        max-width: 350px;
    }
    
    .devices-image-new {
        max-width: 350px;
    }
    
    .partners-controls {
        gap: 0.3rem;
    }
    
    .partner-logo-new {
        min-width: 85px;
        height: 40px;
        padding: 0.4rem 0.6rem;
    }
    
    .partner-logo-text {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
    }
}

/* Providers Section New */
.providers-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
}

.providers-new .section-title-new {
    color: white;
}

.providers-new .section-subtitle-new {
    color: white;
    margin-bottom: 2rem;
}

.btn-providers-more {
    background: var(--btn-secondary-bg, #f3f4f6);
    color: var(--btn-secondary-text, #374151);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.btn-providers-more:hover {
    background: var(--btn-secondary-hover, #e5e7eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.providers-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.provider-logo-new {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 120px;
}

.provider-logo-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.provider-logo-new img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Payment Solutions Section New */
.payments-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
}

.payments-new .section-title-new {
    color: white;
}

.payments-new .section-subtitle-new {
    color: white;
}

.payments-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.payment-logo-new {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 120px;
}

.payment-logo-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.payment-logo-new img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Contact Section New */
.contact-new {
    padding: 6rem 0;
    background: var(--section-bg, #ffffff);
    position: relative;
}

.contact-new::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 1000 1000"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%236366f1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.contact-new .container {
    position: relative;
    z-index: 1;
}

.contact-new .section-title-new {
    color: var(--section-title, #1f2937);
}

.contact-new .section-subtitle-new {
    color: var(--section-subtitle, #64748b);
    margin-bottom: 3rem;
}

.contact-form-new {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg, #ffffff);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-input-new,
.form-textarea-new {
    padding: 1rem 1.25rem;
    border: 1px solid var(--input-border, #d1d5db);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--input-bg, #ffffff);
    color: var(--input-text, #1f2937);
    width: 100%;
}

.form-input-new:focus,
.form-textarea-new:focus {
    outline: none;
    border-color: var(--input-focus, #3b82f6);
    background: var(--input-bg, #ffffff);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea-new {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.btn-contact-new {
    background: var(--btn-primary-bg, #3b82f6);
    color: var(--btn-primary-text, #ffffff);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-contact-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 46, 129, 0.4);
}

/* Responsive Design for New Homepage */
@media (max-width: 768px) {
    .hero-new-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-new-left {
        order: 2;
    }
    
    .hero-new-right {
        order: 1;
    }
    
    .hero-new-title {
        font-size: 2.5rem;
    }
    
    .section-nav-new,
    .solutions-navigation {
        position: relative;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .products-carousel {
        flex-direction: column;
        align-items: center;
    }
    
    .product-card-new {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .solution-card-new {
        flex: 0 0 280px;
        min-height: 250px;
    }
    
    .partners-logos-new::before,
    .partners-logos-new::after {
        width: 50px;
    }
    
    .partners-scroll {
        gap: 1rem;
        animation-duration: 15s;
    }
    
    .partner-logo-new {
        width: 100px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .providers-grid-new,
    .payments-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
    }
    
    .contact-form-new {
        padding: 2rem;
    }
}

/* Solutions carousel responsive */
@media (max-width: 1200px) {
    .solution-card-new {
        flex: 0 0 280px;
        width: 280px;
    }
}

@media (max-width: 768px) {
    .solutions-navigation {
        margin-top: 1.5rem;
    }
    
    .solution-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .solution-card-new {
        flex: 0 0 250px;
        width: 250px;
        padding: 1.5rem;
        min-height: 230px;
    }
    
    .solutions-carousel {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .solution-card-new {
        flex: 0 0 220px;
        width: 220px;
        padding: 1.2rem;
        min-height: 200px;
    }
    
    .solution-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .solutions-carousel {
        padding: 0 0.25rem;
    }
} 

/* Products Navigation Specific Styles */
.products-navigation {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.product-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-size: 0;
}

.product-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.product-nav-btn:disabled,
.product-nav-btn[style*="pointer-events: none"] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.product-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
} 