/* ========================================
   MODERN 2025 HERO SECTION
   ======================================== */

/* Hero Container */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 32, 82, 0.95) 0%, 
        rgba(0, 32, 82, 0.85) 50%,
        rgba(255, 94, 21, 0.3) 100%
    );
    z-index: 1;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    color: white;
    text-align: left;
    width: 100%;
    max-width: 800px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.hero-badge .badge-icon {
    width: 36px;
    height: 36px;
    background: #ff5e15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge .badge-icon i {
    font-size: 16px;
    color: #ffffff;
}

.hero-badge .badge-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Title */
.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    min-height: 160px;
}

.title-highlight {
    color: #ff5e15;
    display: inline-block;
    position: relative;
}

.typing-wrapper {
    display: inline-block;
    white-space: nowrap;
}

.typing-text {
    color: white;
    display: inline;
    position: relative;
}

.typing-text::after {
    content: '|';
    color: #ff5e15;
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.title-dot {
    color: #ff5e15;
    display: inline;
}

/* Description */
.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
}

/* Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
}

.feature-item i {
    color: #ff5e15;
    font-size: 18px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn span,
.hero-btn i {
    position: relative;
    z-index: 1;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff5e15 0%, #e54d0a 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 94, 21, 0.5);
    color: white;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #002052;
    border: 2px solid rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: white;
    color: #ff5e15;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff5e15;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transform: scale(1);
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.image-wrapper:hover .main-image {
    transform: scale(1.02);
}

.image-decoration {
    position: absolute;
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
}

.decoration-1 {
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5e15 0%, transparent 100%);
    opacity: 0.3;
}

.decoration-2 {
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #002052 0%, transparent 100%);
    opacity: 0.3;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff5e15 0%, #e54d0a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text strong {
    font-size: 18px;
    color: #002052;
}

.badge-text span {
    font-size: 14px;
    color: #666;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-link:hover {
    transform: translateY(5px);
    color: white;
}

.scroll-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-icon {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 94, 21, 0.1);
    backdrop-filter: blur(5px);
}

.element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: float-1 20s ease-in-out infinite;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation: float-2 15s ease-in-out infinite;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation: float-3 18s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Mobilde hero image'ı gizle */
    .hero-image {
        display: none;
    }
    
    .hero-title {
        font-size: 56px;
        min-height: 130px;
    }
    
    .typing-wrapper {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 42px;
        min-height: 110px;
    }
    
    .typing-wrapper {
        display: inline-block;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .floating-badge {
        bottom: 15px;
        right: 15px;
    }
    
    .badge-content {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        min-height: 100px;
    }
    
    .typing-wrapper {
        display: inline-block;
    }
    
    .typing-text {
        font-size: 36px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .floating-badge {
        display: none;
    }
}
