/* Custom Styles for Safe Harbor */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #2c3e50 100%);
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex: 1;
    scroll-snap-type: y mandatory;
}

.page-content {
    flex: 1;
}

/* Scroll Snap Sections */
.scroll-snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    position: relative;
}

footer {
    margin-top: auto;
}

/* Hero Section - Professional Design */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 30px 0 15px;
    margin-top: 0;
    padding-top: 76px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    opacity: 1;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #60a5fa;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out 0.2s both;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-title .title-main {
    display: block;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.8);
    max-width: 540px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Hero CTA Buttons */
.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.7s both;
}

/* Static Hero Cards - Yanyana dikey kartlar */
.hero-card-static {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.hero-card-static:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-card-static .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transition: transform 0.3s ease;
}

.hero-card-static:hover .card-icon {
    transform: scale(1.1);
}

.hero-card-static h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.hero-card-static p {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.8);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    flex-grow: 1;
}

.hero-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.hero-card-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    color: #ffffff;
}

/* Hero Stats */
.hero-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 1;
    padding-bottom: 0;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    display: block;
    margin-top: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .title-main {
        font-size: 2rem;
    }
    
    .hero-title .title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-card-static {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }
    
    .hero-card-static .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-card-static h3 {
        font-size: 1.25rem;
    }
    
    .hero-card-static p {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: calc(100vh - 76px);
        padding: 40px 0;
    }
    
    .hero-section .row {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .title-main {
        font-size: 1.5rem;
    }
    
    .hero-title .title-highlight {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-card-static {
        min-height: 220px;
        padding: 1.5rem 1.25rem;
    }
    
    .hero-card-static .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-card-static h3 {
        font-size: 1.1rem;
    }
    
    .hero-card-static p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

/* Features Section - Professional Design */
.features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    opacity: 1;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-badge {
    display: inline-block;
}

.features-badge-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    backdrop-filter: blur(10px);
}

.features-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.features-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.6s ease;
}

.features-logo-wrapper:hover::before {
    left: 100%;
}

.features-logo-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.5) inset,
        0 0 20px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
}

.features-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    position: relative;
    z-index: 1;
    transition: filter 0.3s ease;
}

.features-logo-wrapper:hover .features-logo {
    filter: brightness(1.2);
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #3b82f6;
}

.feature-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .features-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .features-title {
        font-size: 1.75rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.5rem;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
}

/* Products Section - Professional Design */
.products-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 25%, #f1f5f9 50%, #ffffff 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    opacity: 1;
    z-index: 0;
    animation: products-gradient-shift 20s ease-in-out infinite;
}

@keyframes products-gradient-shift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(59, 130, 246, 0.02) 100px, rgba(59, 130, 246, 0.02) 200px);
    z-index: 0;
    pointer-events: none;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

.products-header-wrapper {
    position: relative;
    padding-bottom: 2rem;
}

.products-header-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.products-badge {
    display: inline-block;
}

.products-badge-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    backdrop-filter: blur(10px);
}

.products-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.products-title-line-1,
.products-title-line-2 {
    display: block;
    position: relative;
}

.products-title-line-1 {
    color: #64748b;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.products-title-line-2 {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.25rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.products-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 28px 28px 0 0;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 24px 80px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.15) inset,
        0 0 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-card-header {
    position: relative;
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.product-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-card-header::before {
    opacity: 1;
}

.product-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    box-shadow: 
        0 12px 32px rgba(59, 130, 246, 0.35),
        0 0 0 4px rgba(255, 255, 255, 0.5) inset,
        0 0 20px rgba(59, 130, 246, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.product-icon-large::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(8px);
}

.product-card:hover .product-icon-large {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 
        0 16px 48px rgba(59, 130, 246, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.6) inset,
        0 0 30px rgba(59, 130, 246, 0.4);
}

.product-card:hover .product-icon-large::before {
    opacity: 0.6;
}

.product-badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.product-card-body {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.product-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    text-align: center;
    transition: all 0.4s ease;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-card:hover .product-card-title {
    color: #3b82f6;
    transform: translateY(-2px);
}

.product-card-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.product-features-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-feature-item i {
    font-size: 1rem;
}

.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.product-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    width: 100%;
}

.product-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.product-card-button i {
    transition: transform 0.3s ease;
}

.product-card-button:hover i {
    transform: translateX(5px);
}

.product-card-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.product-card-button-secondary:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    color: #7c3aed;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

.product-card-button-secondary i {
    transition: transform 0.3s ease;
}

.product-card-button-secondary:hover i {
    transform: translateX(3px) translateY(-2px);
}

.btn-products-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.btn-products-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-products-view-all:hover::before {
    left: 100%;
}

.btn-products-view-all:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px) scale(1.02);
    color: #2563eb;
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.3),
        0 0 20px rgba(59, 130, 246, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .products-title {
        font-size: 2.5rem;
    }
    
    .products-title-line-1 {
        font-size: 1.5rem;
    }
    
    .products-title-line-2 {
        font-size: 2.5rem;
    }
    
    .product-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .product-card-title {
        font-size: 1.75rem;
    }
    
    .product-card-header {
        padding: 2.5rem 2rem 1.25rem;
    }
}

@media (max-width: 767px) {
    .products-title {
        font-size: 2rem;
    }
    
    .products-title-line-1 {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .products-title-line-2 {
        font-size: 2rem;
    }
    
    .products-subtitle {
        font-size: 1rem;
    }
    
    .product-icon-large {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }
    
    .product-card-title {
        font-size: 1.5rem;
    }
    
    .product-card-body {
        padding: 2rem 1.5rem;
    }
    
    .product-card-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .product-features-list {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-products-view-all {
        padding: 14px 32px;
        font-size: 1.05rem;
    }
}

/* About Section - Professional Design */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    opacity: 1;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-block;
}

.about-badge-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #8b5cf6;
    backdrop-filter: blur(10px);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.btn-about-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.btn-about-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: #ffffff;
}

.btn-about-more i {
    transition: transform 0.3s ease;
}

.btn-about-more:hover i {
    transform: translateX(5px);
}

.about-stats-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.about-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
}

.about-stats-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* CTA Section - Professional Design */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 1;
    z-index: 0;
    animation: cta-gradient-shift 15s ease-in-out infinite;
}

@keyframes cta-gradient-shift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    z-index: 0;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-main-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 100px rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: cta-rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes cta-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cta-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: cta-float 20s infinite ease-in-out;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
    animation-delay: 5s;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes cta-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.cta-badge {
    display: inline-block;
}

.cta-badge-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff !important;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.cta-title-line-1,
.cta-title-line-2 {
    display: block;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: cta-title-glow 3s ease-in-out infinite;
}

.cta-title-line-2 {
    animation-delay: 1.5s;
}

@keyframes cta-title-glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.cta-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.cta-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-product-card:hover::before {
    transform: scaleX(1);
}

.cta-product-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.3);
}

.cta-product-logo-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cta-product-card:hover .cta-product-logo-wrapper {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.cta-product-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.cta-product-card:hover .cta-product-logo {
    filter: brightness(1.2);
}

.cta-product-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.cta-product-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.cta-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-product-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.cta-product-link i {
    transition: transform 0.3s ease;
}

.cta-product-link:hover i {
    transform: translateX(5px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e293b !important;
    padding: 18px 42px;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.3);
    color: #0f172a !important;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding: 18px 42px;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
}

.btn-cta-secondary:hover::before {
    width: 100%;
}

.btn-cta-secondary:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff !important;
    box-shadow: 
        0 12px 32px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-cta-secondary i {
    transition: transform 0.3s ease;
}

.btn-cta-secondary:hover i {
    transform: translateX(5px);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: cta-particle-float 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.cta-particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.cta-particle-4 {
    top: 40%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes cta-particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, 20px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(15px, 25px) scale(1.1);
        opacity: 0.9;
    }
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float-cta 20s infinite ease-in-out;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.cta-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-cta {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-main-card {
        padding: 3rem 2rem;
    }
    
    .cta-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-product-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-product-logo-wrapper {
        height: 100px;
        padding: 1.25rem;
    }
    
    .cta-product-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-stats-card {
        padding: 2rem 1.5rem;
    }
    
    .about-stats-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-main-card {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .cta-product-card {
        padding: 1.75rem 1.25rem;
    }
    
    .cta-product-logo-wrapper {
        height: 90px;
        padding: 1rem;
    }
    
    .cta-product-name {
        font-size: 1.35rem;
    }
    
    .cta-product-desc {
        font-size: 0.9rem;
    }
    
    .cta-product-link {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}

/* ============================================
   PAGE HEADERS - Common for all pages
   ============================================ */
.page-header-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    padding: 30px 0 15px;
    margin-top: 0;
    padding-top: 76px;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    opacity: 1;
    z-index: 0;
}

.page-header-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

.page-header-content-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.page-header-badge {
    display: inline-block;
}

.page-header-badge-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    backdrop-filter: blur(10px);
}

.page-header-content-card .page-header-badge-text {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.page-header-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b !important;
    margin-bottom: 1rem;
}

.page-header-content-card .page-header-title {
    color: #1e293b !important;
}

.page-header-subtitle {
    font-size: 1.2rem;
    color: #64748b !important;
    line-height: 1.7;
}

.page-header-content-card .page-header-subtitle {
    color: #64748b !important;
}

.page-header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-header-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float-header 20s infinite ease-in-out;
}

.page-header-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.page-header-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.page-header-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-header {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.page-products-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.page-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    opacity: 1;
    z-index: 0;
}

.page-products-section .container {
    position: relative;
    z-index: 1;
}

.page-product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.page-product-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.page-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-product-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

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

.page-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-product-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.page-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.page-product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.page-product-button i {
    transition: transform 0.3s ease;
}

.page-product-button:hover i {
    transform: translateX(5px);
}

.page-empty-state {
    padding: 3rem 1rem;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.page-product-detail-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.page-product-detail-image {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.page-product-detail-image img {
    width: 100%;
    border-radius: 16px;
}

.page-product-detail-icon-large {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.page-product-detail-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.page-product-detail-block {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 2rem;
}

.page-product-detail-block:last-of-type {
    border-bottom: none;
}

.page-product-detail-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.page-product-detail-block-title i {
    color: #3b82f6;
}

.page-product-detail-text {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
}

.page-product-detail-features {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
}

.page-product-detail-actions {
    margin-top: 2rem;
}

.btn-product-detail-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-product-detail-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.btn-product-detail-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-product-detail-secondary:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* ============================================
   PAGE CONTENT SECTION
   ============================================ */
.page-content-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.page-body-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
}

.page-header-content-card .page-body-content {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.page-body-content h2,
.page-body-content h3,
.page-body-content h4 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-body-content h2 {
    font-size: 2rem;
}

.page-body-content h3 {
    font-size: 1.5rem;
}

/* ============================================
   CONTACT PAGES
   ============================================ */
.page-contact-wrapper {
    margin-top: 2rem;
}

.page-contact-addresses {
    margin-bottom: 3rem;
}

.page-contact-address-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.page-header-content-card .page-contact-address-card {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.page-contact-address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.page-contact-address-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-contact-address-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
}

.page-contact-address-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.page-contact-address-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-contact-address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.page-contact-address-item-icon {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.page-contact-address-item-text {
    color: #64748b;
    line-height: 1.7;
}

.page-contact-address-item-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact-address-item-link:hover {
    color: #3b82f6;
}

.page-contact-address-actions {
    margin-top: 1rem;
}

.btn-page-contact-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-page-contact-map:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #2563eb;
}

.page-contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    position: relative;
}

.page-header-content-card .page-contact-form-card {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.page-contact-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.page-contact-alert.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #059669;
}

.page-contact-alert.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.page-contact-alert-content {
    display: flex;
    align-items: center;
}

.page-contact-alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-contact-form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.page-contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.page-contact-form-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

.page-contact-form-label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.page-contact-form-input,
.page-contact-form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    color: #1e293b;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

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

.btn-page-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

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

.btn-page-contact-submit i {
    transition: transform 0.3s ease;
}

.btn-page-contact-submit:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .page-header-content-card {
        padding: 2.5rem 2rem;
    }
    
    .page-header-title {
        font-size: 2.25rem;
    }
    
    .page-product-detail-content {
        padding: 2rem;
    }
    
    .page-body-content {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .page-header-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .page-header-content-card {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .page-header-title {
        font-size: 1.75rem;
    }
    
    .page-header-subtitle {
        font-size: 1rem;
    }
    
    .page-product-card {
        margin-bottom: 1.5rem;
    }
    
    .page-product-detail-content {
        padding: 1.5rem;
    }
    
    .page-body-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .page-contact-form-card {
        padding: 1.5rem;
    }
    
    .page-contact-form-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .page-contact-form-title {
        font-size: 1.5rem;
    }
    
    .page-contact-address-card {
        padding: 1.5rem;
    }
    
    .page-product-detail-actions {
        flex-direction: column;
    }
    
    .btn-product-detail-primary,
    .btn-product-detail-secondary {
        width: 100%;
    }
}

/* Force white text in hero section - OVERRIDE EVERYTHING */
.hero-section {
    color: #ffffff !important;
}

.hero-section *:not(.btn-hero-primary):not(.btn-hero-primary *):not(.stat-number):not(.stat-label):not(.badge-text):not(.card-icon):not(.card-icon *) {
    color: inherit !important;
}

/* Badge renkleri */
.hero-section .badge {
    color: #ffffff !important;
}

/* Gradient Background */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #2c3e50 100%) !important;
    color: #ffffff !important;
}

/* Force white text in gradient sections */
section[style*="background: linear-gradient"] h1,
section[style*="background: linear-gradient"] h2,
section[style*="background: linear-gradient"] h3,
section[style*="background: linear-gradient"] p,
section[style*="background: linear-gradient"] .lead {
    color: #ffffff !important;
}

/* Section headers text colors - ONLY for white background sections */
section:not([style*="background: linear-gradient"]) h2.display-5:not([style*="color"]),
section:not([style*="background: linear-gradient"]) h3:not([style*="color"]),
section:not([style*="background: linear-gradient"]) .fw-bold:not([style*="color"]) {
    color: #212529 !important;
}

section.text-dark h2,
section.text-dark h3,
section.text-dark .fw-bold {
    color: #212529 !important;
}

/* Ensure white text sections stay white */
.bg-gradient-primary h2,
.bg-gradient-primary h3,
.bg-gradient-primary .fw-bold,
.bg-gradient-primary p,
.bg-gradient-primary .lead {
    color: #ffffff !important;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Ensure text visibility in cards */
.card h3,
.card h4,
.card h5 {
    color: #212529 !important;
}

.card .fw-bold.text-dark {
    color: #212529 !important;
}

/* Navbar - Şık Tasarım */
.custom-navbar {
    background: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.custom-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.custom-navbar:hover::before {
    opacity: 1;
}

.custom-navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    background: rgba(15, 23, 42, 0.98) !important;
}

.navbar-brand {
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img,
.navbar-logo {
    max-height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 0.25rem;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.75rem 1.75rem !important;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin: 0 0.35rem;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.navbar-nav .nav-link .nav-link-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: #212529 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link:hover .nav-link-text {
    color: #212529 !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active {
    color: #0f172a !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%) !important;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active .nav-link-text {
    color: #0f172a !important;
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px 2px 0 0;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Button Styles */
.btn {
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Button text colors */
.btn-light {
    color: #0d6efd !important;
}

.btn-light:hover {
    color: #0a58ca !important;
    background-color: #f8f9fa !important;
}

.btn-outline-light {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.btn-outline-light:hover {
    color: #0d6efd !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Footer Links */
footer a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.footer-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-modern .container {
    position: relative;
    z-index: 1;
}

.footer-modern h5,
.footer-modern h6 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-modern h5::after,
.footer-modern h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.footer-modern p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-modern .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
}

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

.footer-modern .list-unstyled li {
    margin-bottom: 0.75rem;
}

.footer-modern .list-unstyled a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-modern .list-unstyled a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    transition: width 0.3s ease;
    bottom: -2px;
}

.footer-modern .list-unstyled a:hover {
    color: #ffffff !important;
    padding-left: 1rem;
    transform: translateX(5px);
}

.footer-modern .list-unstyled a:hover::before {
    width: 8px;
}

.footer-modern .fa-map-marker-alt,
.footer-modern .fa-phone,
.footer-modern .fa-envelope {
    color: #3b82f6;
    width: 20px;
    flex-shrink: 0;
}

.footer-modern .footer-divider {
    border-color: rgba(255, 255, 255, 0.15) !important;
    margin: 3rem 0 2rem;
    opacity: 1;
}

.footer-modern .footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-modern .footer-copyright p {
    margin-bottom: 0;
}

/* Responsive Footer */
@media (max-width: 767px) {
    .footer-modern {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-modern h5,
    .footer-modern h6 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    .footer-modern .footer-divider {
        margin: 2rem 0 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .navbar-brand img,
    .navbar-logo {
        max-height: 35px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        margin: 0.25rem 0;
    }
}
