/* Reset & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-bottom: 0;
}

/* Product page specific - no padding needed */
body.product-page {
    padding-bottom: 0;
}

/* Products Section */
.products-section {
    padding: 0 20px;
    margin: -140px auto 0; /* Increased from -100px to move cards up */
    position: relative;
    z-index: 100;
    max-width: 1400px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25); /* Enhanced shadow for better lift */
    border-radius: 15px;
    overflow: hidden;
    background: white; /* Ensure background is solid */
}

.product-card {
    position: relative;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    color: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    background-size: cover;
    background-position: center;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.product-card:hover::before {
    background: rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image {
    position: relative;
    z-index: 3;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.product-info {
    position: relative;
    z-index: 2;
    width: 100%;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(43, 91, 140, 0.15);
    border-color: rgba(43, 91, 140, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B5B8C;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #2B5B8C 0%, #10519f 100%);
    color: white;
    transform: rotateY(180deg);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #2B5B8C 0%, #10519f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
}
.main-footer {
    background-color: #e8e8e8;
    color: #666;
    padding: 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #10519f;
}

/* Footer Logo Section */
.footer-about .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    /* Kırmızı yapma: filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(4446%) hue-rotate(356deg) brightness(96%) contrast(110%); */
    /* Beyaz yapma: filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); */
    /* Mavi yapma: filter: brightness(0) saturate(100%) invert(20%) sepia(91%) saturate(3178%) hue-rotate(215deg) brightness(95%) contrast(106%); */
}

.footer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

/* Contact Info */
.footer-column .contact-info {
    list-style: none;
}

.footer-column .contact-info li {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-column .contact-info li strong {
    color: #333;
    font-weight: 600;
}

.footer-column .contact-info li a {
    color: #666;
    text-decoration: none;
}

.footer-column .contact-info li a:hover {
    color: #10519f;
}

/* Recent Posts */
.footer-column .post-title {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-column .post-date {
    display: block;
    color: #999;
    font-size: 12px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #d0d0d0;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about .footer-logo {
        max-width: 150px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-section {
        margin-top: -120px;
    }
    
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .product-image {
        width: 140px;
        height: 140px;
        margin-top: 0;
    }
    
    .product-card {
        min-height: 240px;
        padding: 20px 10px;
    }
}

@media (max-width: 1024px) {
    .products-section {
        margin-top: -100px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
    }
    
    /* Better approach for grid centering involves complex CSS or just changing columns */
    /* Let's stick to just reflowing naturally or scrolling */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-section {
        margin-top: -80px;
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 10px;
    }

    .product-card {
        min-height: 220px;
        padding: 20px 10px;
    }
    
    .product-image {
        width: 120px;
        height: 120px;
        margin-top: 0;
        margin-bottom: 15px;
    }
    
    .product-info h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .product-info p {
        font-size: 11px;
        line-height: 1.3;
    }

    .stats-section {
        padding: 60px 15px 40px;
    }
}

@media (max-width: 480px) {
    .products-section {
        margin-top: -60px;
        padding: 0 10px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        min-height: 180px; /* Reduced height */
        padding: 15px 5px;
    }
    
    .product-image {
        width: 100px;
        height: 100px;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .product-info h3 {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .product-info p {
        font-size: 10px;
        display: block; /* Ensure it's shown */
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

/* Industries Showcase */
.industries-showcase {
    background: #f9f9f9;
    padding: 80px 20px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2B5B8C;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.industry-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.industry-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.95) 100%);
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.industry-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.industry-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.industry-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Video Showcase Section */
.video-showcase-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.video-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.video-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

.play-button svg {
    width: 30px;
    height: 30px;
    color: #2B5B8C;
    margin-left: 5px;
}

/* Features Section Redesign */
.features-section {
    padding: 100px 20px;
    background: white;
}

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

.feature-card-modern {
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(43, 91, 140, 0.1);
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e8f0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #2B5B8C;
}

.feature-card-modern:hover .feature-icon-modern {
    background: linear-gradient(135deg, #2B5B8C 0%, #10519f 100%);
    color: white;
}

.feature-icon-modern svg {
    width: 30px;
    height: 30px;
    transition: color 0.3s ease;
}

.feature-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-card-modern p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Applications Showcase Redesign */
.applications-showcase {
    padding: 100px 20px;
    background: #f9f9f9;
}

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

.application-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.application-card:hover {
    transform: scale(1.03);
}

.app-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 91, 140, 0.85);
    z-index: 1;
    transition: background 0.3s ease;
}

.application-card:hover .app-overlay {
    background: rgba(43, 91, 140, 0.7);
}

.application-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    color: white;
}

.application-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.application-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Section Redesign */
.cta-section-home {
    background: #1a1a1a;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 91, 140, 0.2) 0%, rgba(90, 140, 78, 0.2) 100%);
    pointer-events: none;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons-home {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary, .cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn-primary {
    background: #FF8C42;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.cta-btn-primary:hover {
    background: #ff7a28;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 140, 66, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* New Responsive */
@media (max-width: 1024px) {
    .industries-grid, .features-grid-modern, .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-showcase-section {
        height: 400px;
    }
    
    .video-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .industries-grid, .features-grid-modern, .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-card {
        height: 350px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons-home {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
    }
    
    .video-showcase-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .industry-card {
        height: 300px;
        padding: 20px;
    }
    
    .feature-card-modern {
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .video-content h2 {
        font-size: 28px;
    }
}



/* Google reCAPTCHA v3 Badge Styling */
.grecaptcha-badge {
    visibility: visible !important;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.grecaptcha-badge:hover {
    opacity: 1;
}

/* Mobile: reCAPTCHA badge küçült */
@media (max-width: 768px) {
    .grecaptcha-badge {
        transform: scale(0.7);
        transform-origin: right bottom;
        opacity: 0.6;
        bottom: 80px !important; /* Sticky butonun üstünde kalması için */
    }
    
    .grecaptcha-badge:hover {
        opacity: 0.9;
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .grecaptcha-badge {
        transform: scale(0.6);
        bottom: 85px !important;
        opacity: 0.5;
    }
}

/* reCAPTCHA bilgilendirme metni (opsiyonel) */
.recaptcha-info {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}
