:root {
    --primary-color: #1d18af; /* Dark blue for brand color */
    --text-color: #000000;
    --bg-color: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #E5E8ED;
    --accent-color: #00A3E0; /* Lighter blue accent */
    --dark-bg: #0A1A3A;
    --gradient-primary: linear-gradient(135deg, #1d18af 0%, #1a4b9c 100%);
    --gradient-accent: linear-gradient(135deg, #00A3E0 0%, #0091cc 100%);
}

/* Hero Section */
.solution-hero {
    background: #000e29;
    padding: 130px 0 0;
    position: relative;
    overflow: hidden;
}

.solution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="5" height="5" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.15;
}

.solution-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.hero-cta:hover {
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border-color: var(--primary-color);
}

.hero-cta-white {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    gap: 12px;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

.hero-visual {
    text-align: center;
    margin-bottom: 60px;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: white;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-content h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.process-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.process-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

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

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.2s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.process-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    color: white;
}

.process-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.process-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Feature Showcase Sections */
.feature-showcase {
    padding: 100px 0;
    background: var(--bg-color);
}

.feature-showcase:nth-child(even) {
    background: var(--light-gray);
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-container:nth-child(even) {
    direction: rtl;
}

.feature-container:nth-child(even) .feature-content {
    direction: ltr;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.feature-list li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-visual {
    text-align: center;
}

.feature-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Resources Section */
.resources-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: white;
}

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

.resources-header h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.resources-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.resources-header p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 60px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.2s ease;
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    color: white;
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.resource-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.resource-link:hover {
    color: #0091cc;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-container,
    .feature-container {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .process-container,
    .feature-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-container:nth-child(even),
    .feature-container:nth-child(even) {
        direction: ltr;
    }
    
    .process-content h2,
    .resources-header h2 {
        font-size: 32px;
    }
    
    .feature-content h2 {
        font-size: 28px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 130px 0 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .process-section,
    .feature-showcase,
    .resources-section {
        padding: 80px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-card {
        padding: 25px 20px;
    }
    
    .feature-content h2 {
        font-size: 24px;
    }
    
    .feature-list li {
        font-size: 15px;
    }
    
    .resources-header h2 {
        font-size: 28px;
    }
    
    .resources-header p {
        font-size: 16px;
    }
    
    .resource-card {
        padding: 30px 20px;
    }
}

/* Legacy styles for backward compatibility */
.solution-overview {
    padding: 40px 0;
}

.page-title-section {
    background-color: #F5F7FA;
}

.solution-page-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.with-text {
    position: relative;
    display: flex;
    flex-direction: column;
}

.solution-image-text {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-color);
    text-align: center;
}

.solution-image-text span {
    margin-left:20px;
    margin-top: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .solution-image-text span:nth-child(3) {
        margin-right: -20px !important;
    }
}

@media (max-width: 768px) {
    .solution-image-text span {
        margin-left: 0;
        margin-top: 10px;
        font-size: 14px;
        padding: 10px;
    }
}


.solution-image {
    flex: 0 0 45%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

.solution-image img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
}

.solution-content {
    flex: 1;
}

.solution-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.solution-description {
    margin-bottom: 25px;
    font-size: 17px;
}

.key-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-weight: 400;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(10, 42, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.feature-text {
    font-size: 17px;
    color: var(--text-color);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.benefit-title-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

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

.benefit-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    background-color: rgba(10, 42, 94, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 24px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-description {
    font-size: 16px;
    color: #444;
}

/* Case Study Section */
.case-study {
    padding: 80px 0;
    background-color: var(--light-gray);
}


.case-study-container {
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}


.case-study-container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.case-study-image {
    flex: 0 0 40%;
    background-color: var(--primary-color);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.case-study-content {
    flex: 1;
    padding: 30px 50px;
}

@media (max-width: 768px) {
    .case-study-content {
        padding: 30px;
    }
}

.case-study-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.case-study-quote {
    font-style: italic;
    font-size: 18px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 25px;
}

.case-study-results {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.result-item {
    flex: 1;
}

.result-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.result-label {
    font-size: 16px;
    color: #444;
}

/* solution-cta Section */
.solution-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.solution-cta-title {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.solution-cta-description {
    color: white;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 15px;
}

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

    .solution-page-card {
        flex-direction: column;
        gap: 30px;
    }

    .solution-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .case-study-container {
        flex-direction: column;
    }

    .case-study-image {
        min-height: 250px;
    }

    .result-number {
        font-size: 28px;
    }
}

/* Primary Benefit Cards - Ana Faydalar */
.benefit-card.primary-benefit {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefit-card.primary-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.benefit-card.primary-benefit .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-color), #1e5aa8);
    color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(10, 42, 94, 0.3);
}

.benefit-card.primary-benefit .benefit-icon.productivity {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.benefit-card.primary-benefit .benefit-icon.quality {
    background: linear-gradient(135deg, #007bff, #6f42c1);
}

.benefit-card.primary-benefit .benefit-icon.safety {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.benefit-card.primary-benefit .benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}


/* ROI Promotion Card */
.roi-promotion {
    padding: 60px 0;
    background: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

/* ROI Content için yeni style - yan yana kartlar için */
.roi-promotion-content {
    background: #fff;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}


.roi-promotion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00A3E0, #0091cc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.3);
}

.roi-promotion-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.roi-promotion-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.roi-promotion-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
}

.roi-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.roi-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-feature-icon {
    width: 24px;
    height: 24px;
    background: #00A3E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
}

.roi-promotion-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00A3E0 0%, #0091cc 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.3);
    position: relative;
    overflow: hidden;
}

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

.roi-promotion-btn:hover::before {
    left: 100%;
}

.roi-promotion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .roi-promotion-content {
        padding: 30px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .roi-promotion-title {
        font-size: 24px;
    }
    
    .roi-promotion-subtitle {
        font-size: 16px;
    }
    
    .roi-promotion-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .roi-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .roi-promotion-btn {
        padding: 15px 30px;
        font-size: 16px;
    }

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

    .case-study-results {
        flex-direction: column;
        gap: 20px;
    }
    
    .home-contact-prevention-content {
        padding: 20px 15px;
    }
    
    .home-contact-prevention-content h3 {
        font-size: 24px !important;
    }
    
    .home-contact-prevention-content h5 {
        font-size: 16px !important;
    }
}

.home-contact {
    padding: 50px ;
}

.home-contact-prevention-content {
    max-width: 500px !important;
}

.home-contact-prevention-content h3 {
    font-size: 32px;
}

.home-contact-prevention-content h5 {
    font-size: 16px;
}

.home-contact-prevention::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0 12 29 / 75%) 0%, rgb(0 12 29 / 53%) 100%);
    z-index: 1;
}

.home-contact-prevention-first::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 1) 100%) !important;
}

.home-contact-prevention:after {
    background: none !important;
}