/* ==========================================================================
   HAŞEM MAKİNA - ANA CSS
   ========================================================================== */

:root {
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-slate: #f1f5f9;

    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;

    --primary-red: #d92d20;
    --primary-hover: #b42318;

    --border-color: #e2e8f0;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);

    --font-family: 'Plus Jakarta Sans', sans-serif;

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ==========================================================================
   TEMEL SIFIRLAMA
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

.max-width-md {
    max-width: 800px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}


/* ==========================================================================
   TİPOGRAFİ
   ========================================================================== */

h1,
h2,
h3,
h4 {
    color: var(--text-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
}

.section-tag {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}


/* ==========================================================================
   BUTONLAR
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 24px;

    border-radius: 6px;

    font-weight: 700;
    font-size: 0.9rem;

    cursor: pointer;
    text-decoration: none;

    transition: var(--transition);

    border: none;

    max-width: 100%;
}

.btn-primary {
    background: var(--primary-red);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(217, 45, 32, 0.3);
}

.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 45, 32, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(217, 45, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 45, 32, 0);
    }
}

.btn-outline {
    background: transparent;
    color: var(--text-heading);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-slate);
    border-color: var(--text-heading);
}

.btn-secondary {
    background: var(--bg-slate);
    color: var(--text-heading);
}

.btn-secondary:hover {
    background: var(--text-heading);
    color: #fff;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}


/* ==========================================================================
   TOP BAR
   ========================================================================== */

.top-bar {
    background: #0b1120;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-info i {
    color: var(--primary-red);
}

.top-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.iso-badge {
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
}

.lang-selector {
    color: var(--primary-red);
    font-weight: 700;
    cursor: pointer;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: sticky;
    top: 0;

    background: #ffffff;

    border-bottom: 1px solid var(--border-color);

    z-index: 1000;

    padding: 16px 0;

    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    min-width: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;

    background: var(--primary-red);
    color: #fff;

    font-weight: 800;
    font-size: 1.3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;

    color: var(--text-heading);

    min-width: 0;
}

.logo-text strong {
    font-size: 1.2rem;
    font-weight: 800;
}

.logo-text span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    gap: 22px;
}

.nav-link {
    text-decoration: none;

    color: var(--text-body);

    font-weight: 600;
    font-size: 0.9rem;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.menu-toggle {
    display: none;

    background: #ffffff;

    border: 2px solid #0f172a;

    border-radius: 5px;

    font-size: 1.4rem;

    cursor: pointer;

    width: 50px;
    height: 50px;

    align-items: center;
    justify-content: center;

    color: #0f172a;

    flex-shrink: 0;

    position: relative;
    z-index: 3100;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            var(--bg-light) 0%,
            #ffffff 100%
        );

    border-bottom: 1px solid var(--border-color);

    overflow: hidden;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 50px;

    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    font-size: 0.75rem;
    font-weight: 700;

    color: var(--primary-red);

    background: rgba(217, 45, 32, 0.08);

    padding: 6px 14px;

    border-radius: 50px;

    margin-bottom: 20px;

    max-width: 100%;
}

.tag-dot {
    width: 6px;
    height: 6px;

    background: var(--primary-red);

    border-radius: 50%;

    flex-shrink: 0;
}

.hero-title {
    font-size: 3rem;

    line-height: 1.15;

    margin-bottom: 20px;

    overflow-wrap: break-word;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-description {
    font-size: 1.1rem;

    color: var(--text-muted);

    margin-bottom: 30px;

    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}

.hero-features {
    display: flex;

    gap: 25px;

    border-top: 1px solid var(--border-color);

    padding-top: 25px;

    flex-wrap: wrap;
}

.feature-item {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 0.85rem;

    font-weight: 700;

    color: var(--text-heading);
}

.feature-item i {
    color: var(--primary-red);
}

.image-frame {
    position: relative;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: var(--shadow-md);

    border: 1px solid var(--border-color);

    width: 100%;
}

.image-frame img {
    width: 100%;

    display: block;

    object-fit: cover;

    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.spec-overlay {
    position: absolute;

    bottom: 20px;
    left: 20px;

    background: rgba(15, 23, 42, 0.9);

    color: #fff;

    padding: 15px 20px;

    border-radius: 8px;

    border-left: 4px solid var(--primary-red);
}

.spec-badge strong {
    display: block;

    font-size: 1.4rem;

    line-height: 1;
}

.spec-badge span {
    font-size: 0.75rem;

    color: #94a3b8;
}


/* ==========================================================================
   BRANDS
   ========================================================================== */

.brands-section {
    padding: 30px 0;

    background: #ffffff;

    border-bottom: 1px solid var(--border-color);
}

.brands-title {
    text-align: center;

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--text-muted);

    margin-bottom: 15px;
}

.brands-grid {
    display: flex;

    justify-content: space-around;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}

.brand-item {
    font-weight: 800;

    font-size: 0.85rem;

    color: var(--text-muted);

    display: flex;

    align-items: center;

    gap: 8px;

    opacity: 0.7;

    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;

    color: var(--primary-red);
}


/* ==========================================================================
   STATS
   ========================================================================== */

.stats-bar {
    background: #0f172a;

    color: #fff;

    padding: 45px 0;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    text-align: center;
}

.stat-num {
    font-size: 2.5rem;

    font-weight: 800;

    color: #fff;
}

.stat-label {
    font-size: 0.85rem;

    color: #94a3b8;
}


/* ==========================================================================
   SECTORS
   ========================================================================== */

.sectors {
    background: var(--bg-light);
}

.sectors-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 40px;
}

.sector-card {
    background: #ffffff;

    border: 1px solid var(--border-color);

    border-radius: 10px;

    padding: 30px;

    transition: var(--transition);
}

.sector-card:hover {
    border-color: var(--primary-red);

    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}

.sector-icon {
    width: 50px;
    height: 50px;

    background: rgba(217, 45, 32, 0.08);

    color: var(--primary-red);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

    border-radius: 8px;

    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 1.2rem;

    margin-bottom: 10px;
}

.sector-card p {
    font-size: 0.9rem;

    color: var(--text-muted);
}


/* ==========================================================================
   ABOUT
   ========================================================================== */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;

    border-radius: 12px;

    border: 1px solid var(--border-color);
}

.experience-card {
    position: absolute;

    bottom: -20px;

    right: -20px;

    background: var(--primary-red);

    color: #fff;

    padding: 20px;

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    align-items: center;

    box-shadow: var(--shadow-md);
}

.experience-card strong {
    font-size: 1.6rem;

    font-weight: 800;
}

.experience-card span {
    font-size: 0.75rem;

    text-transform: uppercase;

    font-weight: 700;
}

.values-list {
    margin-top: 30px;
}

.value-card {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;
}

.value-card i {
    font-size: 1.4rem;

    color: var(--primary-red);

    background: rgba(217, 45, 32, 0.08);

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    flex-shrink: 0;
}

.value-card h4 {
    font-size: 1.05rem;

    margin-bottom: 4px;
}

.value-card p {
    font-size: 0.85rem;

    color: var(--text-muted);
}


/* ==========================================================================
   PRODUCTS
   ========================================================================== */

.products {
    background: #ffffff;
}

.filter-tabs {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin: 35px 0;

    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;

    border: 1px solid var(--border-color);

    padding: 10px 20px;

    border-radius: 6px;

    font-weight: 700;

    font-size: 0.85rem;

    color: var(--text-body);

    cursor: pointer;

    transition: var(--transition);

    white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-red);

    border-color: var(--primary-red);

    color: #ffffff;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(350px, 1fr));

    gap: 30px;
}

.product-card {
    background: #ffffff;

    border: 1px solid var(--border-color);

    border-radius: 10px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    min-width: 0;
}

.product-card:hover {
    box-shadow: var(--shadow-md);

    border-color: var(--primary-red);

    transform: translateY(-4px);
}

.card-img-wrapper {
    position: relative;

    height: 220px;

    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: var(--transition);
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    background: #0f172a;

    color: #fff;

    font-size: 0.7rem;

    font-weight: 700;

    padding: 4px 10px;

    border-radius: 4px;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.2rem;

    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.85rem;

    color: var(--text-muted);

    margin-bottom: 20px;
}

.specs-table {
    background: var(--bg-light);

    border-radius: 6px;

    padding: 12px;

    margin-bottom: 20px;

    max-width: 100%;

    overflow: hidden;
}

.spec-row {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    font-size: 0.8rem;

    padding: 4px 0;

    border-bottom: 1px dashed var(--border-color);
}

.spec-row:last-child {
    border-bottom: none;
}


/* ==========================================================================
   PARTNERS
   ========================================================================== */

.tech-partners {
    background: var(--bg-light);
}

.partners-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(300px, 1fr));

    gap: 20px;

    margin-top: 40px;
}

.partner-card {
    background: #ffffff;

    border: 1px solid var(--border-color);

    padding: 25px;

    border-radius: 8px;

    text-align: center;

    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--primary-red);
}

.partner-card h4 {
    font-size: 1.3rem;

    color: var(--text-heading);

    margin-bottom: 5px;
}

.partner-card p {
    font-size: 0.85rem;

    color: var(--text-muted);
}


/* ==========================================================================
   SERVICE
   ========================================================================== */

.service-process {
    background: #ffffff;
}

.process-steps {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(260px, 1fr));

    gap: 25px;

    margin-top: 40px;
}

.step-card {
    background: var(--bg-light);

    border: 1px solid var(--border-color);

    padding: 30px;

    border-radius: 10px;

    position: relative;
}

.step-num {
    font-size: 2rem;

    font-weight: 800;

    color: var(--primary-red);

    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 1.1rem;

    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;

    color: var(--text-muted);
}


/* ==========================================================================
   CERTIFICATES
   ========================================================================== */

.certificates-section {
    background: #0f172a;

    color: #fff;

    padding: 30px 0;
}

.cert-flex {
    display: flex;

    justify-content: space-around;

    flex-wrap: wrap;

    gap: 20px;

    font-size: 0.85rem;
}

.cert-item i {
    color: var(--primary-red);

    margin-right: 6px;
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(350px, 1fr));

    gap: 30px;

    margin-top: 40px;
}

.testimonial-card {
    background: #ffffff;

    border: 1px solid var(--border-color);

    padding: 30px;

    border-radius: 10px;

    box-shadow: var(--shadow-sm);

    min-width: 0;
}

.stars {
    color: #f59e0b;

    font-size: 0.85rem;

    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.9rem;

    color: var(--text-body);

    font-style: italic;

    margin-bottom: 20px;

    overflow-wrap: break-word;
}

.user-info strong {
    display: block;

    font-size: 0.95rem;
}

.user-info span {
    font-size: 0.8rem;

    color: var(--text-muted);
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-accordion {
    margin-top: 35px;
}

.faq-item {
    background: #ffffff;

    border: 1px solid var(--border-color);

    border-radius: 8px;

    margin-bottom: 12px;

    overflow: hidden;

    transition: var(--transition);
}

.faq-question {
    width: 100%;

    padding: 20px;

    background: none;

    border: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    font-family: inherit;

    font-size: 1rem;

    font-weight: 700;

    color: var(--text-heading);

    cursor: pointer;

    text-align: left;
}

.faq-question i {
    color: var(--primary-red);

    transition: transform 0.3s ease;

    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding: 0 20px;

    font-size: 0.9rem;

    color: var(--text-muted);

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-item.active {
    border-color: var(--primary-red);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;

    padding-bottom: 20px;
}


/* ==========================================================================
   BLOG
   ========================================================================== */

.blog {
    background: var(--bg-light);
}

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 35px;
}

.blog-card {
    background: #ffffff;

    border: 1px solid var(--border-color);

    border-radius: 10px;

    overflow: hidden;

    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);

    transform: translateY(-4px);

    border-color: var(--primary-red);
}

.blog-img {
    height: 200px;

    overflow: hidden;
}

.blog-img img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.75rem;

    color: var(--primary-red);

    font-weight: 700;

    display: block;

    margin-bottom: 8px;
}

.blog-content h3 {
    font-size: 1.1rem;

    line-height: 1.3;

    margin-bottom: 10px;
}

.blog-content p {
    font-size: 0.85rem;

    color: var(--text-muted);

    margin-bottom: 15px;
}

.blog-link {
    color: var(--text-heading);

    font-weight: 700;

    font-size: 0.85rem;

    text-decoration: none;

    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-red);
}


/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 50px;
}

.info-list {
    margin-top: 30px;
}

.info-card {
    display: flex;

    gap: 15px;

    margin-bottom: 25px;
}

.info-card i {
    font-size: 1.2rem;

    color: var(--primary-red);

    background: var(--bg-slate);

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    flex-shrink: 0;
}

.contact-form-wrapper {
    background: #ffffff;

    border: 1px solid var(--border-color);

    padding: 35px;

    border-radius: 12px;

    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    font-size: 0.8rem;

    font-weight: 700;

    color: var(--text-heading);

    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px;

    border: 1px solid var(--border-color);

    border-radius: 6px;

    font-family: inherit;

    font-size: 0.9rem;

    transition: var(--transition);

    max-width: 100%;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: var(--primary-red);

    box-shadow:
        0 0 0 3px rgba(217, 45, 32, 0.1);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #0f172a;

    color: #94a3b8;

    padding: 60px 0 20px;

    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 40px;

    margin-bottom: 40px;
}

.logo-text.light strong {
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #94a3b8;

    text-decoration: none;

    display: block;

    margin-bottom: 8px;

    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.social-btns {
    display: flex;

    gap: 10px;

    margin-top: 15px;
}

.social-btns a {
    width: 36px;
    height: 36px;

    background: rgba(255, 255, 255, 0.1);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding-top: 20px;

    font-size: 0.8rem;
}


/* ==========================================================================
   MODAL
   ========================================================================== */

.modal {
    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(15, 23, 42, 0.6);

    backdrop-filter: blur(4px);

    z-index: 4000;

    align-items: center;

    justify-content: center;

    padding: 20px;
}

.modal-content {
    background: #ffffff;

    width: 90%;

    max-width: 550px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 30px;

    border-radius: 12px;

    position: relative;

    box-shadow: var(--shadow-md);
}

.close-modal {
    position: absolute;

    top: 15px;
    right: 20px;

    font-size: 1.5rem;

    cursor: pointer;
}

.modal-body-specs {
    background: var(--bg-light);

    padding: 12px;

    border-left: 3px solid var(--primary-red);

    margin: 15px 0;

    font-size: 0.85rem;

    font-weight: 600;
}


/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

.scroll-top {
    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 42px;
    height: 42px;

    background: var(--primary-red);

    color: #fff;

    border: none;

    border-radius: 6px;

    cursor: pointer;

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 500;

    transition: var(--transition);
}

.scroll-top.visible {
    display: flex;
}


/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal-left {
    opacity: 0;

    transform: translateX(-40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-right {
    opacity: 0;

    transform: translateX(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-bottom {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-left.active,
.reveal-right.active,
.reveal-bottom.active {
    opacity: 1;

    transform: translate(0, 0);
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 992px) {

    .btn.btn-primary.btn-pulse {
        display: none;
    }


    .container {
        width: 92%;
        max-width: 100%;
    }

    .section-padding {
        padding: 75px 0;
    }


    /* TOP BAR */

    .top-bar {
        padding: 7px 0;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-info {
        justify-content: center;

        gap: 12px;

        flex-wrap: wrap;
    }

    .top-right {
        display: none;
    }


    /* HEADER */

    .header {
        padding: 12px 0;

        z-index: 3000;
    }

    .header.scrolled {
        padding: 10px 0;
    }

    .nav-container {
        min-height: 52px;
    }

    .nav-menu {
        position: fixed;

        top: 0;
        left: 0;

        width: 300px;
        max-width: 82vw;

        height: 100dvh;

        background: #ffffff;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            105px
            25px
            30px;

        overflow-y: auto;
        overflow-x: hidden;

        box-shadow:
            12px 0 35px rgba(0, 0, 0, 0.16);

        transform: translateX(-110%);

        transition:
            transform 0.4s
            cubic-bezier(0.16, 1, 0.3, 1);

        z-index: 3050;

        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateX(0);

        visibility: visible;
    }


    /* MENÜ ARKA PLAN KARARTMASI */

    body:has(.nav-menu.active)::before {
        content: "";

        position: fixed;

        inset: 0;

        background: rgba(15, 23, 42, 0.48);

        z-index: 3040;

        pointer-events: none;
    }


    /* MENÜ LİNKLERİ */

    .nav-menu .nav-link {
        display: flex;

        align-items: center;

        min-height: 55px;

        width: 100%;

        padding: 15px 5px;

        border-bottom: 1px solid var(--border-color);

        color: var(--text-heading);

        font-size: 0.95rem;

        font-weight: 700;

        transition: var(--transition);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--primary-red);

        padding-left: 14px;
    }


    /* MENÜ BUTONU */

    .menu-toggle {
        display: flex;

        width: 50px;
        height: 50px;

        background: #ffffff;

        border: 2px solid #0f172a;

        border-radius: 5px;

        z-index: 3100;
    }


    /* HERO */

    .hero {
        padding: 65px 0;

        overflow: hidden;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-title {
        font-size: 2.35rem;

        line-height: 1.18;

        overflow-wrap: anywhere;
    }

    .hero-description {
        font-size: 1rem;

        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        gap: 10px;

        margin-bottom: 30px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;

        gap: 12px;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px 10px;
    }

    .stat-num {
        font-size: 2.1rem;
    }


    /* ABOUT */

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 50px;
    }

    .experience-card {
        right: 10px;

        bottom: -15px;
    }


    /* PRODUCTS */

    .filter-tabs {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 6px;

        scrollbar-width: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }


    /* PARTNERS */

    .partners-grid {
        grid-template-columns: 1fr;
    }


    /* PROCESS */

    .process-steps {
        grid-template-columns: 1fr;
    }


    /* TESTIMONIALS */

    .testimonials-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* BLOG */

    .blog-grid {
        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .form-row {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* BACK TO TOP */

    .scroll-top {
        width: 42px;
        height: 42px;

        right: 15px;
        bottom: 15px;

        z-index: 500;
    }

    /* Menü açıkken Back To Top görünmesin */

    body:has(.nav-menu.active) .scroll-top {
        opacity: 0;

        visibility: hidden;

        pointer-events: none;
    }
}


/* ==========================================================================
   MOBİL
   ========================================================================== */

@media (max-width: 576px) {

    html,
    body {
        width: 100%;

        max-width: 100%;

        overflow-x: hidden;
    }

    .container {
        width: 94%;

        max-width: 100%;
    }

    .section-padding {
        padding: 58px 0;
    }

    h2 {
        font-size: 1.7rem;

        line-height: 1.25;
    }


    /* TOP BAR */

    .top-bar {
        padding: 7px 0;
    }

    .top-info {
        width: 100%;

        gap: 7px 12px;

        justify-content: center;
    }

    .top-info span {
        font-size: 0.65rem;
    }


    /* HEADER */

    .header {
        padding: 10px 0;
    }

    .nav-container {
        min-height: 48px;

        gap: 10px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;

        font-size: 1.15rem;
    }

    .logo-text strong {
        font-size: 1.05rem;
    }

    .logo-text span {
        font-size: 0.58rem;

        letter-spacing: 1.4px;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;

        font-size: 1.3rem;

        flex-shrink: 0;
    }

    .nav-menu {
        width: 285px;

        max-width: 82vw;

        padding:
            90px
            20px
            25px;
    }


    /* HERO */

    .hero {
        padding: 50px 0 55px;
    }

    .hero-grid {
        width: 100%;

        min-width: 0;
    }

    .hero-tag {
        font-size: 0.64rem;

        padding: 6px 10px;

        gap: 6px;

        white-space: normal;
    }

    .hero-title {
        font-size: 1.85rem;

        line-height: 1.18;

        margin-bottom: 17px;

        overflow-wrap: anywhere;

        word-break: normal;
    }

    .hero-description {
        font-size: 0.88rem;

        line-height: 1.7;

        margin-bottom: 24px;
    }

    .hero-buttons {
        width: 100%;

        gap: 9px;
    }

    .hero-buttons .btn {
        width: 100%;

        min-height: 50px;

        padding: 12px 16px;

        font-size: 0.84rem;
    }

    .hero-features {
        gap: 11px;

        padding-top: 20px;
    }

    .feature-item {
        font-size: 0.75rem;

        line-height: 1.4;
    }


    /* HERO IMAGE */

    .image-frame {
        border-radius: 9px;
    }

    .spec-overlay {
        bottom: 9px;

        left: 9px;

        padding: 10px 12px;
    }

    .spec-badge strong {
        font-size: 1.05rem;
    }

    .spec-badge span {
        font-size: 0.63rem;
    }


    /* BRANDS */

    .brands-section {
        padding: 25px 0;
    }

    .brands-grid {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .brand-item {
        justify-content: center;

        font-size: 0.68rem;
    }


    /* STATS */

    .stats-bar {
        padding: 35px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px 5px;
    }

    .stat-num {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.67rem;
    }


    /* SECTORS */

    .sectors-grid {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 28px;
    }

    .sector-card {
        padding: 19px;
    }

    .sector-icon {
        width: 45px;
        height: 45px;

        font-size: 1.2rem;

        margin-bottom: 15px;
    }

    .sector-card h3 {
        font-size: 1.05rem;
    }

    .sector-card p {
        font-size: 0.8rem;

        line-height: 1.6;
    }


    /* ABOUT */

    .about-grid {
        gap: 40px;
    }

    .experience-card {
        right: 8px;

        bottom: -12px;

        padding: 13px;
    }

    .experience-card strong {
        font-size: 1.3rem;
    }

    .experience-card span {
        font-size: 0.62rem;
    }

    .value-card {
        gap: 12px;
    }

    .value-card i {
        width: 43px;
        height: 43px;

        font-size: 1.15rem;
    }

    .value-card h4 {
        font-size: 0.95rem;
    }

    .value-card p {
        font-size: 0.78rem;

        line-height: 1.6;
    }


    /* PRODUCTS */

    .filter-tabs {
        margin: 25px 0;

        gap: 8px;
    }

    .tab-btn {
        padding: 9px 14px;

        font-size: 0.75rem;
    }

    .product-grid {
        gap: 16px;
    }

    .card-img-wrapper {
        height: 190px;
    }

    .card-body {
        padding: 18px;
    }

    .card-body h3 {
        font-size: 1.05rem;
    }

    .card-desc {
        font-size: 0.79rem;

        line-height: 1.6;
    }

    .specs-table {
        padding: 10px;
    }

    .spec-row {
        font-size: 0.72rem;

        gap: 10px;
    }


    /* PARTNERS */

    .partners-grid {
        gap: 14px;

        margin-top: 28px;
    }

    .partner-card {
        padding: 19px;
    }

    .partner-card h4 {
        font-size: 1.1rem;
    }

    .partner-card p {
        font-size: 0.78rem;
    }


    /* SERVICE */

    .process-steps {
        gap: 14px;

        margin-top: 28px;
    }

    .step-card {
        padding: 19px;
    }

    .step-num {
        font-size: 1.7rem;
    }

    .step-card h3 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.78rem;
    }


    /* CERTIFICATES */

    .certificates-section {
        padding: 25px 0;
    }

    .cert-flex {
        flex-direction: column;

        align-items: center;

        gap: 11px;

        text-align: center;

        font-size: 0.75rem;
    }


    /* TESTIMONIALS */

    .testimonials-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 28px;
    }

    .testimonial-card {
        padding: 19px;

        border-radius: 8px;
    }

    .stars {
        font-size: 0.72rem;

        margin-bottom: 11px;
    }

    .testimonial-card p {
        font-size: 0.79rem;

        line-height: 1.7;

        margin-bottom: 15px;
    }

    .user-info strong {
        font-size: 0.84rem;
    }


    /* FAQ */

    .faq-accordion {
        margin-top: 25px;
    }

    .faq-item {
        margin-bottom: 8px;
    }

    .faq-question {
        padding: 15px;

        font-size: 0.82rem;

        line-height: 1.45;
    }

    .faq-answer {
        padding-left: 15px;

        padding-right: 15px;

        font-size: 0.77rem;

        line-height: 1.6;
    }


    /* BLOG */

    .blog-grid {
        gap: 16px;

        margin-top: 25px;
    }

    .blog-img {
        height: 185px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-content h3 {
        font-size: 1rem;
    }

    .blog-content p {
        font-size: 0.78rem;
    }


    /* CONTACT */

    .contact-grid {
        gap: 30px;
    }

    .info-list {
        margin-top: 25px;
    }

    .info-card {
        gap: 11px;

        margin-bottom: 19px;
    }

    .info-card i {
        width: 40px;
        height: 40px;

        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 18px;

        border-radius: 9px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px;

        font-size: 0.82rem;
    }


    /* FOOTER */

    .footer {
        padding: 45px 0 18px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-bottom {
        text-align: center;

        line-height: 1.7;
    }


    /* MODAL */

    .modal {
        padding: 12px;
    }

    .modal-content {
        width: 100%;

        max-height: 92vh;

        padding: 20px;

        border-radius: 10px;
    }


    /* BACK TO TOP */

    .scroll-top {
        width: 38px;
        height: 38px;

        right: 12px;
        bottom: 12px;

        border-radius: 50%;
    }

    body:has(.nav-menu.active) .scroll-top {
        opacity: 0;

        visibility: hidden;

        pointer-events: none;
    }


    /* BUTONLAR */

    .btn {
        min-height: 44px;

        padding: 11px 17px;

        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 12px 18px;

        font-size: 0.85rem;
    }
}


/* ==========================================================================
   ÇOK KÜÇÜK TELEFONLAR
   ========================================================================== */

@media (max-width: 400px) {

    .container {
        width: 93%;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-description {
        font-size: 0.82rem;
    }

    .logo-text strong {
        font-size: 0.98rem;
    }

    .logo-text span {
        font-size: 0.52rem;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
    }

    .nav-menu {
        width: 270px;
    }

    .stats-grid {
        gap: 20px 2px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-card p {
        font-size: 0.76rem;
    }
}