:root {
    --red: #d91f26;
    --green: #087651;
    --dark: #0d1b1f;
    --mid: #1e2f36;
    --light: #f5f7f8;
    --muted: #7a8b92;
    --radius: 18px;
    --shadow: 0 25px 60px rgba(13, 27, 31, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Urbanist", "Segoe UI", system-ui, -apple-system, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.95rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(217, 31, 38, 0.12);
    color: var(--red);
}

.hero {
    background: radial-gradient(circle at top, rgba(8, 118, 81, 0.35), transparent 60%), linear-gradient(120deg, #0a1215, #132a2f 55%, #04201a);
    color: white;
    /*padding: 2rem clamp(1rem, 4vw, 4rem) 4rem;
    overflow: hidden;*/
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 8% auto auto 60%;
    width: 600px;
    height: 250px;
    background: radial-gradient(circle, rgba(217, 31, 38, 0.45), transparent 45%);
    filter: blur(40px);
    pointer-events: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--red), #f24b51);
}

.brand-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.brand-tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: white;
}

.nav-phone {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    background: rgba(217, 31, 38, 0.15);
    border: 1px solid rgba(217, 31, 38, 0.4);
    color: rgba(255, 255, 255, 0.85);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 999px;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-top: 4rem;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    padding-bottom:20px;
}

.hero-cta {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-primary,
.cta-secondary {
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.cta-primary {
    background: linear-gradient(120deg, var(--red), #f76f75);
    color: white;
    box-shadow: 0 20px 35px rgba(217, 31, 38, 0.35);
}

.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
}

/* Ana Slider */
.hero-slider {
    position: relative;
    max-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .slide-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(179, 12, 19, 0.4));
    }

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
}

    .slide-content h2 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .slide-content p {
        font-size: 20px;
        margin-bottom: 30px;
        max-width: 600px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .slider-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active,
    .dot:hover {
        background: white;
        transform: scale(1.2);
    }


.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.75rem;
    backdrop-filter: blur(12px);
}

.hero-card h3 {
    margin: 0.2rem 0 1rem;
    font-size: 1.5rem;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.6rem;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.hero-stats {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

main {
    padding: clamp(2rem, 5vw, 4.5rem);
}

.section {
    margin: clamp(2rem, 5vw, 4.5rem) auto;
    max-width: 1200px;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.8rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
}

.icon-circle {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(8, 118, 81, 0.1);
    color: var(--green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card ul {
    padding-left: 1rem;
    color: var(--muted);
}

.highlight {
    background: linear-gradient(135deg, #052d24, #0b4635 50%, #053026);
    border-radius: var(--radius);
    color: white;
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: var(--shadow);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-list div {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-circle.small {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.highlight-panel {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.8rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-panel ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
    display: grid;
    gap: 0.7rem;
}

.panel-cta {
    border: none;
    background: var(--red);
    color: white;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.leather {
    background: white;
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow);
}

.leather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.leather-card {
    border: 1px solid #e4eaed;
    border-radius: var(--radius);
    padding: 1.5rem;
    min-height: 180px;
    position: relative;
}

.tag {
    background: rgba(8, 118, 81, 0.15);
    color: var(--green);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    bottom: 1.5rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.timeline-item {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item span {
    position: absolute;
    top: -18px;
    left: 1.5rem;
    background: var(--dark);
    color: white;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-weight: 700;
}

.testimonials {
    text-align: center;
}

.testimonial-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 1rem;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.6rem;
    opacity: 0.35;
    transform: scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--shadow);
}

.contact {
    max-width: 1100px;
}

.contact-card {
    background: linear-gradient(120deg, #0e2e26, #06251d);
    color: white;
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-card a {
    color: white;
    font-weight: 600;
    display: block;
    text-decoration: none;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    font-size: 0.9rem;
    display: grid;
    gap: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: none;
    font-family: inherit;
}

.contact-form button {
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    background: var(--red);
    color: white;
    cursor: pointer;
}

.footer {
    padding: 2rem clamp(1rem, 4vw, 4rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    background: #050c0a;
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: white;
    margin-inline: 0.5rem;
    font-size: 1.2rem;
}

.floating-call {
    position: fixed;
    right: 1.5rem;
    bottom: 6rem;
    z-index: 3;
}

.floating-call a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: white;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: var(--shadow);
    font-weight: 600;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        inset: 80px 1.5rem auto;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.65);
        padding: 1.5rem;
        border-radius: var(--radius);
        backdrop-filter: blur(14px);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-phone {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-bottom: 3rem;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-card {
        order: -1;
    }
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    .testimonial-slider {
        grid-auto-flow: row;
        grid-auto-rows: auto;
    }
.hero-slider {height:400px;}
.slide-content h2{font-size:32px;}
.hero-card {
    padding: 1.25rem;
}
.hero-content{padding-top:2rem;}
}

