/* ATF Antalya - Home Page Styles - Modernized */

/* Hero Section */
.home-hero {
    background: radial-gradient(circle at top right, rgba(237, 28, 36, 0.15), transparent 50%),
        linear-gradient(135deg, var(--navy-dark) 0%, #050b14 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    pointer-events: none;
}

.home-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-body) 0%, transparent 100%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge span:first-child {
    color: var(--primary-red);
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
}

.home-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.meta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    backdrop-filter: blur(5px);
    transition: var(--transition-base);
}

.meta-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.meta-card small {
    display: block;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.meta-card strong {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-primary {
    background: var(--primary-red);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 10px 20px rgba(237, 28, 36, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(237, 28, 36, 0.4);
    color: #ffffff;
}

.hero-outline {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-soft {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-soft:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.hero-stats article {
    border-left: 3px solid var(--primary-red);
    padding-left: 16px;
}

.hero-stats strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stats span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Panel (Right Side) */
.hero-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-head span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.panel-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.panel-link:hover {
    color: #ffffff;
}

.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agenda-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.agenda-day {
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.agenda-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.agenda-list span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.panel-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.panel-cta p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Sections Global */
.home-section {
    padding: 100px 0;
    position: relative;
}

.home-section:nth-of-type(even) {
    background-color: var(--bg-surface);
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.section-head p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Feature Cards */
.feature-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(237, 28, 36, 0.08);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--primary-red);
    color: #ffffff;
    transform: scale(1.1) rotate(3deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.feature-link::after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.feature-link:hover {
    color: var(--primary-red-dark);
}

.feature-link:hover::after {
    transform: translateX(5px);
}

/* Home Grid Section */
.home-grid {
    background-color: #ffffff;
}

.story-card {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2b4a 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: #ffffff;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.2) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.story-card .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.story-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.story-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 500;
}

.story-list i {
    color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.story-actions {
    display: flex;
    gap: 16px;
}

.timeline-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 48px;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--border-color);
}

.timeline-list li {
    display: flex;
    gap: 24px;
    position: relative;
}

.timeline-list span {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.timeline-list h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.timeline-list p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Stats Section */
.home-stats {
    background: var(--navy-dark);
    color: #ffffff;
    padding: 80px 0;
}

.home-stats .section-head h2 {
    color: #ffffff;
}

.home-stats .section-head p {
    color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.stats-grid article {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
}

.stats-grid article:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stats-grid strong {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 16px;
    line-height: 1;
}

.stats-grid p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Testimonials */
.home-testimonials {
    background: #ffffff;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-slider article {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.testimonial-slider article::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: rgba(237, 28, 36, 0.1);
    position: absolute;
    top: 24px;
    right: 24px;
}

.testimonial-slider p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-slider span {
    display: block;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 0.9rem;
}

/* News Section */
.home-news {
    background: var(--bg-surface);
}

.news-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-card span {
    display: inline-block;
    background: rgba(237, 28, 36, 0.1);
    color: var(--primary-red);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.4;
}

.news-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.news-card a {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card a:hover {
    color: var(--primary-red);
}

/* CTA Section */
.home-cta {
    padding: 0 0 80px;
    background: transparent;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 32px;
    padding: 60px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(237, 28, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-card .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.cta-card h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.cta-actions .btn {
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
}

.cta-actions .hero-primary {
    background: #ffffff;
    color: var(--primary-red);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-actions .hero-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.cta-actions .hero-outline {
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-actions .hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .home-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-lead {
        margin: 0 auto 40px;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        text-align: left;
    }

    .hero-panel {
        margin-top: 40px;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-card p {
        margin: 0 auto 30px;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .home-hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-primary,
    .hero-outline,
    .hero-soft {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }
}