/* =====================================================
   YENIGÜN OTOMAT - HERO LAYOUTS CSS
   Different hero section layouts and styles
   ===================================================== */

/* ==================== LAYOUT 1: CORPORATE MODERN ==================== */
.hero-corporate {
    /* Default layout - inherits styles from style.css */
    position: relative;
}

/* ==================== LAYOUT 2: FULLSCREEN HERO ==================== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-fullscreen .hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-fullscreen .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 15, 30, 0.7) 0%,
            rgba(10, 15, 30, 0.85) 100%);
    z-index: 1;
}

.hero-fullscreen .container {
    position: relative;
    z-index: 2;
}

.hero-center-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-minimal {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title-large {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-large span {
    display: block;
}

.text-gradient-animated {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-cta-center {
    margin-bottom: 3rem;
}

.btn-gold.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.hero-stats-bar .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats-bar .stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.hero-stats-bar .stat-text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 18px;
        opacity: 0.5;
    }
}

/* ==================== LAYOUT 3: SPLIT LAYOUT ==================== */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.hero-badge-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge-line {
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.hero-badge-line span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-title-split {
    margin-bottom: 1.5rem;
}

.hero-title-split .title-line {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-title-split .title-accent {
    color: var(--accent);
}

.hero-text-split {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-actions-split {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.trust-item i {
    color: var(--primary);
}

.hero-split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.visual-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--glass-bg), var(--glass-border));
    padding: 2rem;
}

.visual-image img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-stats {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-stat {
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    animation: floatStat 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-stat .stat-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.floating-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

@keyframes floatStat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==================== LAYOUT 4: MINIMAL PROFESSIONAL ==================== */
.hero-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #FAFBFC 0%, #F0F4F8 100%);
}

.hero-minimal-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.overline {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 1.5rem;
}

.hero-title-minimal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-minimal em {
    font-style: italic;
    color: #2563EB;
}

.hero-lead {
    font-size: 1.25rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-minimal-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-minimal-primary {
    padding: 1rem 2.5rem;
    background: #0F172A;
    color: white;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-minimal-primary:hover {
    background: #1E293B;
    transform: translateY(-2px);
}

.btn-minimal-secondary {
    padding: 1rem 2rem;
    color: #0F172A;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-minimal-secondary:hover {
    color: #2563EB;
}

.hero-minimal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-minimal {
    display: flex;
    gap: 1.5rem;
    text-align: left;
}

.feature-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #CBD5E1;
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: #64748B;
}

/* ==================== LAYOUT 5: BOLD / CESUR ==================== */
.hero-bold {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0A0A0A;
}

.hero-bold-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.mega-title {
    display: flex;
    flex-direction: column;
}

.mega-line {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: white;
}

.mega-line.mega-accent {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.hero-bold-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-block {
    max-width: 400px;
}

.info-text {
    font-size: 1.125rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-bold {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #0A0A0A;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-bold:hover {
    background: var(--primary);
    color: white;
}

.stats-block {
    display: flex;
    gap: 3rem;
}

.bold-stat {
    display: flex;
    flex-direction: column;
}

.bold-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.bold-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #666;
    margin-top: 0.5rem;
}

/* Geometric Shapes */
.geo-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.geo-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    border-radius: 50%;
}

.geo-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 5%;
    transform: rotate(45deg);
}

.geo-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    border: none;
    background: rgba(255, 255, 255, 0.02);
}

/* ==================== LAYOUT 6: GRID SHOWCASE ==================== */
.hero-grid {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-medium) 100%);
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-hero-header {
    text-align: center;
    margin-bottom: 3rem;
}

.grid-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.grid-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.grid-title .accent {
    color: var(--primary);
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.5rem;
}

.grid-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.grid-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.grid-card-main {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-card .card-image {
    position: absolute;
    inset: 0;
}

.grid-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.grid-card .card-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.grid-card .card-overlay p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-link {
    color: var(--accent);
    font-weight: 500;
}

.grid-card-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.stat-large .stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
}

.stat-large .stat-txt {
    font-size: 0.875rem;
    opacity: 0.8;
}

.grid-card-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.grid-card-service i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.grid-card-service h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.grid-card-service p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.grid-card-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--dark-light), var(--dark));
}

.grid-card-cta h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.grid-card-cta p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.grid-card-image {
    grid-column: span 2;
}

.grid-card-clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.client-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.client-count {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-split-visual {
        order: -1;
    }

    .hero-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .grid-card-main {
        grid-column: span 2;
    }

    .grid-card-image {
        grid-column: span 2;
    }

    .hero-bold-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-stats-bar {
        flex-direction: column;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-minimal-features {
        grid-template-columns: 1fr;
    }

    .hero-grid-layout {
        grid-template-columns: 1fr;
    }

    .grid-card-main,
    .grid-card-image {
        grid-column: 1;
        min-height: 300px;
    }

    .stats-block {
        flex-wrap: wrap;
        gap: 2rem;
    }
}