﻿/* Ana Sayfa Özel Stilleri */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(135deg, rgba(5, 35, 49, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*min-height: 100vh;*/
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .hero-content.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.hero-title {
    font-family: 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #052331;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

    .hero-title.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.hero-title-main {
    display: block;
}

.hero-title-accent {
    display: block;
    color: #052331;
    font-weight: 400;
}

.hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

    .hero-subtitle.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

    .hero-actions.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #052331;
    color: white;
    border-color: #052331;
}

    .btn-primary:hover {
        background-color: #8AB84F;
        border-color: #8AB84F;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(5, 35, 49, 0.3);
    }

.btn-secondary {
    background-color: transparent;
    color: #666;
    border-color: #ddd;
}

    .btn-secondary:hover {
        background-color: #f8f9fa;
        border-color: #052331;
        color: #052331;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.btn-outline {
    background-color: transparent;
    color: #052331;
    border-color: #052331;
}

    .btn-outline:hover {
        background-color: #052331;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(5, 35, 49, 0.3);
    }

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.8s;
}

    .hero-visual.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

.hero-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

    .hero-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #052331, #8AB84F);
        border-radius: 22px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .hero-card:hover::before {
        opacity: 0.1;
    }

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #052331, #8AB84F);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.hero-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.hero-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.hero-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(185, 28, 74, 0.1);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #052331;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .scroll-indicator:hover {
        color: #052331;
        transform: translateX(-50%) translateY(-5px);
    }

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 20% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 24px;
    }
}

.scroll-indicator span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services Preview Section */
.services-preview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(135deg, #052331, #8AB84F);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(5, 35, 49, 0.1), rgba(138, 184, 79, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #052331;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #052331, #8AB84F);
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    color: #052331;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

    .service-link:hover {
        color: #8AB84F;
        gap: 10px;
    }

    .service-link span {
        transition: transform 0.3s ease;
    }

    .service-link:hover span {
        transform: translateX(5px);
    }

.services-cta {
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-text {
    padding-right: 40px;
}

.section-description {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #052331, #8AB84F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.why-choose-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.visual-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.card-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.success-rate {
    text-align: center;
}

.rate-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.circular-chart {
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: #b91c4a;
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke-dasharray: 0, 100;
    transition: stroke-dasharray 2s ease-in-out;
}

.percentage {
    fill: #b91c4a;
    font-size: 0.8em;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
}

.success-rate p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #052331, #8AB84F);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(5, 35, 49, 0.3);
}

.badge-icon {
    font-size: 32px;
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #052331, #8AB84F);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

    .cta-actions .btn-primary {
        background-color: white;
        color: #052331;
        border-color: white;
    }

        .cta-actions .btn-primary:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

.contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.contact-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .contact-value:hover {
        opacity: 0.8;
        transform: translateY(-2px);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-choose-text {
        padding-right: 0;
        text-align: center;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 40px;
    }

    .hero-container {
        padding: 0 20px;
        gap: 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .services-preview {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .why-choose-us {
        padding: 80px 0;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .contact-cta {
        padding: 80px 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 30px;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-card {
        padding: 30px 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .visual-card {
        padding: 30px 20px;
    }

    .experience-badge {
        padding: 15px 20px;
    }

    .badge-number {
        font-size: 28px;
    }

    .container {
        padding: 0 15px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        min-height: auto;
        page-break-after: always;
    }

    .scroll-indicator {
        display: none;
    }

    .btn {
        display: none;
    }

    .hero-visual,
    .why-choose-visual {
        display: none;
    }
}
