/* 
    SAĞLAM FORKLİFT - Rugged Industrial Design System
    Theme: Orange & Metallic Steel
*/

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #F97316; /* Bold Orange */
    --primary-glow: rgba(249, 115, 22, 0.3);
    --secondary: #0F172A; /* Deep Industrial Blue-Black */
    --accent: #1E293B; /* Slightly lighter for cards */
    --metallic: #E2E8F0;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Unique Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 2px solid var(--primary);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-btn:hover {
    color: var(--primary);
}

/* Hero Section - More Unique */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary);
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('assets/img/hero.png') no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(40px, 10vw, 110px);
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1;
}

.hero h1 span {
    display: block;
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

/* Unique Buttons */
.btn {
    padding: 20px 45px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.05);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    margin-left: 20px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Services Grid - Unique Card Design */
.services {
    padding: 150px 0;
    background: #0B1120;
}

.grid-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.card-unique {
    background: var(--accent);
    padding: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.card-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.card-unique:hover::before {
    height: 100%;
}

.card-unique:hover {
    background: #2D3748;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 30px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.card-unique:hover .card-img {
    filter: grayscale(0%);
}

.card-unique h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* About Section - Asymmetrical */
.about {
    padding: 150px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    border-radius: 4px;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.about-visual:hover img {
    transform: rotate(0deg);
}

.about-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    background: var(--primary);
    padding: 40px;
    font-family: 'Archivo Black';
    font-size: 30px;
    color: var(--white);
    box-shadow: 20px 20px 0 var(--secondary);
}

/* Section Header Unique */
.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 60px;
    line-height: 1;
}

.section-header .line {
    width: 100px;
    height: 10px;
    background: var(--primary);
    margin-top: 20px;
}

/* Testimonials - Industrial Style */
.testimonial {
    background: var(--accent);
    padding: 40px;
    border-left: 8px solid var(--primary);
    position: relative;
}

.testimonial::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    font-family: 'Archivo Black';
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

/* Modern Footer - EXION Dijital Style */
.exion-footer {
    padding: 100px 0 50px;
    background: linear-gradient(to bottom, #0F172A, #020617);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-cta {
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-cta h2 {
    font-size: clamp(30px, 5vw, 45px);
    margin-bottom: 15px;
}

.footer-top-cta p {
    color: var(--text-muted);
    font-size: 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 300px;
}

.footer-grid h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a {
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

footer ul li a i {
    color: var(--primary);
    width: 20px;
}

footer ul li a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.footer-bottom-agency {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.exion-link {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition);
}

.exion-link:hover {
    color: var(--white);
    text-shadow: 0 0 20px var(--primary);
}

/* Mobile Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    .hero h1 {
        font-size: clamp(40px, 8vw, 80px);
    }
    .section-header h2 {
        font-size: 50px;
    }
}

@media (max-width: 1024px) {
    .about {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .about-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-badge {
        top: -20px;
        left: 20px;
        padding: 25px;
        font-size: 24px;
    }
    .hero {
        background-position: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 12px 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    }
    .logo-container {
        gap: 8px;
    }
    .logo-img {
        height: 35px;
    }
    .logo-text {
        font-size: 14px;
        white-space: nowrap;
    }
    #menu-toggle {
        display: block !important;
        font-size: 22px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary);
        padding: 30px 20px;
        gap: 20px;
        border-bottom: 2px solid var(--primary);
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        display: flex;
    }
    .hero {
        padding-top: 80px;
        text-align: center;
    }
    .hero-content {
        padding: 0 10px;
        width: 100%;
    }
    .hero h1 {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    .hero p {
        font-size: 15px;
        line-height: 1.6;
        margin: 0 auto 30px;
        border-left: none;
        padding-left: 0;
        max-width: 100%;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        clip-path: none !important;
        padding: 16px 20px;
        font-size: 14px;
        transform: none !important;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .grid-unique {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .card-unique {
        padding: 30px 20px;
    }
    .card-img {
        height: 180px;
    }
    .about-badge {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        margin-bottom: 20px;
        box-shadow: 10px 10px 0 var(--accent);
        padding: 20px;
        font-size: 20px;
    }
    .about-visual img {
        transform: none !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-agency {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero h1 span {
        -webkit-text-stroke: 0.5px var(--primary);
    }
    .section-header h2 {
        font-size: 26px;
    }
    .logo-text {
        font-size: 12px;
    }
    .container {
        padding: 0 15px;
    }
}
