/* ===================================================
   HPC BOYA WEBSITE - STYLE.CSS (TEMİZLENMİŞ)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===================================================
   RESET
   =================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
  /*  background: #f8f9fc; */
    color: #222;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: .3s;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    padding: 0 15px;
    margin: auto;
}

/* ===================================================
   COLORS
   =================================================== */

:root {
    --primary: #7c3aed;
    --secondary: #ff6b35;
    --dark: #101828;
    --text: #667085;
    --white: #ffffff;
    --border: #e4e7ec;
    --gradient: linear-gradient(90deg, #ff7a18 0%, #ff4d6d 45%, #7c3aed 100%);
    --shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

p {
    color: var(--text);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}

.section-head span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: 42px;
    max-width: 700px;
    color: #1f2937;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

/* ===================================================
   BUTTONS
   =================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 60px;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(124, 58, 237, .25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(124, 58, 237, .35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 60px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 600;
}

.btn-outline:hover {
    background: #f4f4f4;
    border-color: #7c3aed;
    color: #7c3aed;
}

/* ===================================================
   HEADER
   =================================================== */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(15px);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.header .container {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 100px;
}

/* ===================================================
   NAVIGATION
   =================================================== */

.navbar ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar ul li a:hover,
.navbar ul li a.active-link {
    color: #7c3aed;

}

/* ===================================================
   MOBILE TOGGLE
   =================================================== */

.mobile-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: none;
    background: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* ===================================================
   HERO
   =================================================== */

.hero {
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 50px;
}

.hero-subtitle {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #667085;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 92px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111827;
}

.hero-content h1 span {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 19px;
    max-width: 560px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    animation: none !important; /* Animasyonu tamamen devre dışı bırak */
    /* İsterseniz aşağıdaki gibi sabit konumda da tutabilirsiniz */
    transform: none !important;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ===================================================
   FEATURES
   =================================================== */

.features {
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.feature-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.feature-item i {
    font-size: 34px;
    color: #7c3aed;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.7;
}

/* ===================================================
   CATEGORIES (Index)
   =================================================== */

.categories {
    padding: 100px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 360px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .65) 100%);
    z-index: 1;
}

.category-card .overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.category-card .overlay h3 {
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.category-card .overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 6px;
}

.category-card .overlay .cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 22px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: .3s;
    margin-top: 12px;
}

.category-card .overlay .cat-btn:hover {
    background: #fff;
    color: #111827;
    transform: translateX(6px);
    border-color: #fff;
}

.category-card .overlay .cat-btn i {
    font-size: 16px;
    transition: .3s;
}

.category-card .overlay .cat-btn:hover i {
    transform: translateX(4px);
}

/* ===================================================
   BRANDS
   =================================================== */

.brands {
    padding: 100px 0;
    background: #fff;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transition: .35s;
    border: 1px solid #edf0f5;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .1);
}

.brand-card:hover h4 {
    color: #7c3aed;
}

.brand-card img {
    width: 100%;
 /*   height: 110px; */
    object-fit: contain;
    padding: 20px;
}

.brand-card:nth-child(1) img {
    background: #0c1630;
}
.brand-card:nth-child(2) img {
    background: #08328f;
}
.brand-card:nth-child(3) img {
    background: #005da8;
}

.brand-card h4 {
    padding: 25px 25px 10px;
    font-size: 22px;
}

.brand-card p {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.8;
}

/* ===================================================
   ABOUT
   =================================================== */

.about-company {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.about-content span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #7c3aed;
}

.about-content h2 {
    font-size: 52px;
    margin: 20px 0;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.counter-box {
    padding: 25px;
    background: #f8f9fc;
    border-radius: 20px;
    text-align: center;
}

.counter-box h3 {
    font-size: 42px;
    color: #7c3aed;
}

.counter-box span {
    font-size: 14px;
}

/* ===================================================
   PROJECTS (Index)
   =================================================== */

.projects {
    padding: 100px 0;
    background: #f8f9fc;
}

.project-top {
    margin-bottom: 50px;
    max-width: 600px;
}

.project-top span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #7c3aed;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-top h2 {
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #111827 0%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-top p {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.8;
}

/* Swiper Projects */
.project-slider {
    padding-bottom: 20px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .35s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card:hover h4 {
    color: #7c3aed;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-card .content {
    padding: 25px;
}

.project-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.project-card span {
    font-size: 14px;
    color: #667085;
}

.project-card .content .project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #7c3aed;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}

.project-card .content .project-btn i {
    transition: .3s;
    font-size: 14px;
}

.project-card .content .project-btn:hover {
    color: #5b21b6;
    gap: 14px;
}

.project-card .content .project-btn:hover i {
    transform: translateX(4px);
}

/* Swiper Custom */
.swiper {
    overflow: visible !important;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    margin-top: 25px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #7c3aed;
    width: 32px;
    border-radius: 50px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    color: #7c3aed;
    transition: .3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #7c3aed;
    color: #fff;
    transform: scale(1.05);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

/* ===================================================
   COLOR STUDIO CTA
   =================================================== */

.color-studio {
    padding: 60px 0;
}

.studio-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #081120 0%, #121e35 100%);
    color: #fff;
}

.studio-box::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -50px;
    width: 500px;
    height: 500px;
    background: url('../images/color-bg.png');
    background-size: cover;
    opacity: .9;
    pointer-events: none;
}

.studio-box span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #a5b4fc;
}

.studio-box h2 {
    color: #fff;
    font-size: 48px;
    max-width: 500px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.studio-box .btn-primary {
    position: relative;
    z-index: 2;
}

/* ===================================================
   REFERENCES
   =================================================== */

.references {
    padding: 100px 0;
    background: #fff;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.reference-item {
    height: 120px;
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.reference-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.reference-item img {
    max-width: 140px;
    opacity: .8;
}

/* ===================================================
   FOOTER
   =================================================== */

.footer {
    background: #081120;
    padding: 100px 0 40px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about img {
    height: 200px;
    margin-bottom: 25px;
}

.footer-about p {
    color: rgba(255, 255, 255, .7);
    max-width: 320px;
    line-height: 1.9;
}

.footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
}

.footer ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* ===================================================
   STICKY HEADER
   =================================================== */

.header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .98);
}

/* ===================================================
   MOBILE MENU
   =================================================== */

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.mobile-toggle i {
    font-size: 28px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 72px;
    }
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header .container {
        height: 100px;
    }
    .mobile-toggle {
        display: flex;
    }
    .navbar {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 320px;
        height: calc(100vh - 100px);
        background: #fff;
        padding: 30px;
        overflow-y: auto;
        transition: .4s;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    }
    .navbar.active {
        left: 0;
    }
    .navbar ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .navbar ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .navbar ul li a {
        display: flex;
        justify-content: space-between;
        padding: 16px 0;
        width: 100%;
    }
    .header .btn-primary {
        display: none;
    }
    .hero {
        padding-top: 60px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: auto;
        margin-bottom: 35px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        max-width: 700px;
        margin: auto;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-grid {
        grid-template-columns: 1fr;
    }
    .feature-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .studio-box {
        padding: 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .studio-box h2 {
        font-size: 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .reference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 56px;
    }
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-head h2 {
        font-size: 34px;
    }
    .project-top h2 {
        font-size: 38px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .studio-box {
        padding: 40px;
    }
    .studio-box h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 40px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .feature-wrapper {
        padding: 25px;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    .project-card img {
        height: 220px;
    }
    .studio-box {
        padding: 35px 25px;
    }
    .studio-box h2 {
        font-size: 28px;
    }
    .footer {
        padding: 70px 0 30px;
    }
    .counter-grid {
        grid-template-columns: 1fr;
    }
    .reference-grid {
        grid-template-columns: 1fr;
    }
    .category-card .overlay .cat-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    .category-card .overlay h3 {
        font-size: 20px;
    }
}

/* ===================================================
   KURUMSAL SAYFASI ÖZEL
   =================================================== */

.hero-curporate .hero-content h1 {
    font-size: 72px;
}
.hero-curporate .hero-content h1 span {
    background: linear-gradient(90deg, #7c3aed, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.vm-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    border: 1px solid #edf0f5;
    transition: .35s;
    text-align: center;
}
.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,.1);
}
.vm-card i {
    font-size: 48px;
    color: #7c3aed;
    margin-bottom: 20px;
}
.vm-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}
.vm-card p {
    font-size: 16px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.value-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #edf0f5;
    transition: .35s;
}
.value-item:hover {
    transform: scale(1.03);
    border-color: #7c3aed;
}
.value-item i {
    font-size: 40px;
    color: #7c3aed;
    margin-bottom: 15px;
}
.value-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}
.value-item p {
    font-size: 14px;
    color: #667085;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .35s;
    text-align: center;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.team-card .info {
    padding: 20px;
}
.team-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.team-card span {
    font-size: 14px;
    color: #7c3aed;
    font-weight: 600;
}

/* ===== SERTİFİKA KARE DÜZENİ ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.cert-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #edf0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    transition: .3s;
    overflow: hidden;
}

.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 1;
    transition: .3s;
}

.cert-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.cert-item:hover img {
    transform: scale(1.05);
}

/* Mobil uyum (mevcut medya sorgularıyla uyumlu) */
@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-curporate .hero-content h1 { font-size: 56px; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .hero-curporate .hero-content h1 { font-size: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   DEKORATİF SAYFASI ÖZEL
   =================================================== */

.hero-decorative .hero-content h1 {
    font-size: 72px;
}
.hero-decorative .hero-content h1 span {
    background: linear-gradient(135deg, #ff6b35, #ffb703);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deco-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.deco-category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
    cursor: pointer;
}
.deco-category-card:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}
.deco-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}
.deco-category-card:hover img {
    transform: scale(1.08);
}
.deco-category-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}
.deco-category-card .overlay h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
}
.deco-category-card .overlay p {
    color: rgba(255,255,255,.8);
    font-size: 15px;
}
.deco-category-card .overlay .arrow-circle {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 20px;
    margin-top: 12px;
    transition: .3s;
}
.deco-category-card:hover .arrow-circle {
    transform: translateX(6px);
    background: #7c3aed;
    color: #fff;
}

.why-grid1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.why-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #edf0f5;
    transition: .3s;
}
.why-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transform: translateY(-5px);
}
.why-item i {
    font-size: 44px;
    color: #7c3aed;
    margin-bottom: 18px;
}
.why-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}
.why-item p {
    font-size: 14px;
    color: #667085;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.product-grid1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .35s;
    border: 1px solid #edf0f5;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.1);
}
.product-card img {
    width: 100%;

    object-fit: cover;
}
.product-card .info {
    padding: 20px;
}
.product-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}
.product-card p {
    font-size: 14px;
    color: #667085;
    margin-bottom: 15px;
}
.product-card .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-card .price {
    font-weight: 700;
    color: #7c3aed;
    font-size: 18px;
}
.product-card .btn-sm {
    padding: 8px 18px;
    background: #7c3aed;
    color: #fff;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}
.product-card .btn-sm:hover {
    background: #5b21b6;
}

.color-inspire {
    background: #f8f9fc;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}
.color-inspire .text h2 {
    font-size: 40px;
    margin-bottom: 15px;
}
.color-inspire .text p {
    font-size: 17px;
    max-width: 400px;
    margin-bottom: 25px;
}
.color-swatches {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.color-swatches .swatch {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    transition: .3s;
    cursor: pointer;
}
.color-swatches .swatch:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .hero-decorative .hero-content h1 { font-size: 56px; }
    .deco-category-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .color-inspire { flex-direction: column; text-align: center; padding: 40px; }
    .color-inspire .text p { margin: 0 auto 25px; }
}
@media (max-width: 576px) {
    .hero-decorative .hero-content h1 { font-size: 40px; }
    .deco-category-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .color-swatches { justify-content: center; }
    .color-inspire { padding: 25px; }
}

/* ===================================================
   ENDÜSTRİYEL SAYFASI ÖZEL
   =================================================== */

.hero-industrial {
    background: linear-gradient(135deg, #010a1b 0%, #1a2a4a 100%);
}
.hero-industrial .hero-content h1 {
    font-size: 72px;
    color: #fff;
}
.hero-industrial .hero-content h1 span {
    background: linear-gradient(90deg, #ff6b35, #ffb703);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-industrial .hero-content p {
    color: rgba(255,255,255,0.8);
}
.hero-industrial .hero-subtitle {
    color: #ffb703;
}
.hero-industrial .btn-primary {
    box-shadow: 0 15px 35px rgba(255,107,53,0.3);
}
.hero-industrial .btn-outline {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.hero-industrial .btn-outline:hover {
    background: #fff;
    color: #0a1628;
}

.industry-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
	justify-content: center;
}

.industry-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    transition: .4s;
    cursor: pointer;
}
.industry-card:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
}
.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}
.industry-card:hover img {
    transform: scale(1.1);
}
.industry-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(10,22,40,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}
.industry-card .overlay .tag {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 10px;
}
.industry-card .overlay h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 4px;
}
.industry-card .overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.tech-item {
    background: #fff;
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e4e7ec;
    transition: .3s;
    position: relative;
    overflow: hidden;
}
.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffb703);
    opacity: 0;
    transition: .3s;
}
.tech-item:hover::before {
    opacity: 1;
}
.tech-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}
.tech-item i {
    font-size: 44px;
    color: #ff6b35;
    margin-bottom: 18px;
}
.tech-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}
.tech-item p {
    font-size: 14px;
    color: #667085;
    line-height: 1.7;
}

.industrial-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.industrial-product {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf0f5;
    transition: .35s;
}
.industrial-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    border-color: #ff6b35;
}
.industrial-product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #0a1628;
}
.industrial-product .info {
    padding: 25px;
}
.industrial-product .info .badge {
    display: inline-block;
    background: #0a1628;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.industrial-product .info h4 {
    font-size: 20px;
    margin-bottom: 8px;
}
.industrial-product .info p {
    font-size: 14px;
    color: #667085;
    margin-bottom: 15px;
}
.industrial-product .info .specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid #edf0f5;
    padding-top: 15px;
    margin-bottom: 15px;
}
.industrial-product .info .specs span {
    font-size: 13px;
    color: #111827;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.industrial-product .info .specs i {
    color: #ff6b35;
}
.industrial-product .btn-sm {
    padding: 10px 24px;
    background: transparent;
    color: #0a1628;
    border: 1px solid #d1d5db;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
    display: inline-block;
}
.industrial-product .btn-sm:hover {
    background: #0a1628;
    color: #fff;
    border-color: #0a1628;
}

@media (max-width: 992px) {
    .hero-industrial .hero-content h1 { font-size: 56px; }
    .industry-category-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .industrial-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .hero-industrial .hero-content h1 { font-size: 40px; }
    .industry-category-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .industrial-product-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   MARKALAR SAYFASI ÖZEL
   =================================================== */

.hero-brands .hero-content h1 {
    font-size: 72px;
}
.hero-brands .hero-content h1 span {
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brands-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.brand-featured-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    border: 1px solid #edf0f5;
    transition: .35s;
    text-align: center;
}
.brand-featured-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
    border-color: #7c3aed;
}
.brand-featured-card .logo-area {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #f8f9fc;
}
.brand-featured-card .logo-area img {
    max-height: 80px;
    width: auto;
    filter: grayscale(0.2);
    transition: .4s;
}
.brand-featured-card:hover .logo-area img {
    filter: grayscale(0);
    transform: scale(1.05);
}
.brand-featured-card .info {
    padding: 30px 25px;
}
.brand-featured-card .info .badge {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.brand-featured-card .info .badge.orange {
    background: #ff6b35;
}
.brand-featured-card .info .badge.gold {
    background: #f59e0b;
}
.brand-featured-card .info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}
.brand-featured-card .info p {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
    margin-bottom: 18px;
}
.brand-featured-card .info .btn-link {
    color: #7c3aed;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
}
.brand-featured-card .info .btn-link:hover {
    gap: 12px;
    color: #5b21b6;
}

.brands-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.brand-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid #edf0f5;
    text-align: center;
    transition: .3s;
}
.brand-detail-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.brand-detail-card img {
    max-height: 50px;
    margin: 0 auto 15px;
    opacity: .8;
    transition: .3s;
}
.brand-detail-card:hover img {
    opacity: 1;
}
.brand-detail-card h5 {
    font-size: 16px;
    margin-bottom: 4px;
}
.brand-detail-card .tag {
    font-size: 12px;
    color: #7c3aed;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.reason-item {
    padding: 40px 30px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #edf0f5;
    text-align: center;
    transition: .3s;
}
.reason-item:hover {
    transform: translateY(-6px);
    border-color: #7c3aed;
    box-shadow: 0 15px 35px rgba(0,0,0,.04);
}
.reason-item i {
    font-size: 48px;
    color: #7c3aed;
    margin-bottom: 20px;
}
.reason-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}
.reason-item p {
    font-size: 15px;
    color: #667085;
    line-height: 1.8;
}

.sector-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.sector-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #edf0f5;
}
.sector-box i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 15px;
}
.sector-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.sector-box .brand-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.sector-box .brand-tags span {
    background: #f8f9fc;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    border: 1px solid #e4e7ec;
}

@media (max-width: 992px) {
    .hero-brands .hero-content h1 { font-size: 56px; }
    .brands-featured-grid { grid-template-columns: 1fr 1fr; }
    .brands-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .reason-grid { grid-template-columns: 1fr 1fr; }
    .sector-matrix { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .hero-brands .hero-content h1 { font-size: 40px; }
    .brands-featured-grid { grid-template-columns: 1fr; }
    .brands-detail-grid { grid-template-columns: 1fr; }
    .reason-grid { grid-template-columns: 1fr; }
    .sector-matrix { grid-template-columns: 1fr; }
}

/* ===================================================
   PROJELER SAYFASI ÖZEL
   =================================================== */

.hero-projects .hero-content h1 {
    font-size: 72px;
}
.hero-projects .hero-content h1 span {
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.stat-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    border: 1px solid #edf0f5;
    transition: .3s;
}
.stat-box:hover {
    transform: translateY(-6px);
    border-color: #7c3aed;
}
.stat-box h3 {
    font-size: 48px;
    color: #7c3aed;
    margin-bottom: 5px;
}
.stat-box p {
    font-size: 16px;
    color: #667085;
    margin-bottom: 0;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 28px;
    border-radius: 60px;
    background: #fff;
    border: 1px solid #e4e7ec;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
    transition: .3s;
}
.filter-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
}
.filter-btn.active {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    box-shadow: 0 10px 25px rgba(124,58,237,.25);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.project-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    cursor: pointer;
    transition: .35s;
    background: #fff;
}
.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0,0,0,.15);
}
.project-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .6s;
}
.project-item:hover img {
    transform: scale(1.05);
}
.project-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
    opacity: 0;
    transition: .35s;
}
.project-item:hover .overlay {
    opacity: 1;
}
.project-item .overlay .category-tag {
    display: inline-block;
    background: #7c3aed;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 10px;
}
.project-item .overlay h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 4px;
}
.project-item .overlay p {
    color: rgba(255,255,255,.8);
    font-size: 14px;
}
.project-item .overlay .view-btn {
    margin-top: 12px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
}
.project-item .overlay .view-btn:hover {
    gap: 12px;
}
.project-item .title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
    padding: 20px;
    color: #fff;
    pointer-events: none;
}
.project-item .title-bar h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 2px;
}
.project-item .title-bar span {
    font-size: 13px;
    opacity: .8;
}
.project-item:hover .title-bar {
    opacity: 0;
}

/* Modal */
.project-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.project-modal.active {
    display: flex;
}
.project-modal .modal-content {
    background: #fff;
    border-radius: 28px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalFade .3s ease;
}
@keyframes modalFade {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.project-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #111827;
    cursor: pointer;
    transition: .3s;
    background: none;
    border: none;
}
.project-modal .close-modal:hover {
    transform: rotate(90deg);
}
.project-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.project-modal .modal-body img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 400px;
}
.project-modal .modal-body .details h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.project-modal .modal-body .details .meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}
.project-modal .modal-body .details .meta div {
    background: #f8f9fc;
    padding: 12px 16px;
    border-radius: 12px;
}
.project-modal .modal-body .details .meta div strong {
    display: block;
    font-size: 13px;
    color: #667085;
    font-weight: 500;
}
.project-modal .modal-body .details .meta div span {
    font-weight: 700;
    color: #111827;
}
.project-modal .modal-body .details p {
    font-size: 16px;
    line-height: 1.8;
    color: #667085;
}

@media (max-width: 992px) {
    .hero-projects .hero-content h1 { font-size: 56px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .project-modal .modal-body { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .hero-projects .hero-content h1 { font-size: 40px; }
    .stats-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .project-modal .modal-content { padding: 20px; }
    .project-modal .modal-body .details .meta { grid-template-columns: 1fr; }
}

/* ===================================================
   RENK STUDIO SAYFASI ÖZEL
   =================================================== */

.hero-colors .hero-content h1 {
    font-size: 72px;
}
.hero-colors .hero-content h1 span {
    background: linear-gradient(135deg, #ff6b35, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================================================
   İLETİŞİM SAYFASI ÖZEL
   =================================================== */

.hero-contact .hero-content h1 {
    font-size: 72px;
}
.hero-contact .hero-content h1 span {
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    border: 1px solid #edf0f5;
}
.contact-form h3 {
    font-size: 28px;
    margin-bottom: 8px;
}
.contact-form p {
    font-size: 15px;
    color: #667085;
    margin-bottom: 25px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #111827;
}
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #e4e7ec;
    font-size: 15px;
    transition: .3s;
    font-family: 'Inter', sans-serif;
    background: #fafbfc;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124,58,237,.1);
    background: #fff;
}
.contact-form .form-group textarea {
    min-height: 130px;
    resize: vertical;
}
.contact-form .form-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    border: 1px solid #edf0f5;
    transition: .3s;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.info-card:hover {
    border-color: #7c3aed;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.info-card i {
    font-size: 28px;
    color: #7c3aed;
    min-width: 40px;
    margin-top: 4px;
}
.info-card .text h4 {
    font-size: 17px;
    margin-bottom: 4px;
}
.info-card .text p {
    color: #667085;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}
.info-card .text p a {
    color: #7c3aed;
}
.info-card .text p a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f9fc;
    border: 1px solid #edf0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #111827;
    transition: .3s;
}
.social-links a:hover {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    transform: translateY(-4px);
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    border: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: #f8f9fc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #edf0f5;
    transition: .3s;
}
.faq-item:hover {
    border-color: #7c3aed;
}
.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: .3s;
}
.faq-question i {
    transition: .3s;
    font-size: 20px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 25px;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}
.faq-answer p {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .hero-contact .hero-content h1 { font-size: 56px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .hero-contact .hero-content h1 { font-size: 40px; }
    .contact-form { padding: 25px; }
    .info-card { flex-direction: column; align-items: center; text-align: center; }
    .social-links { justify-content: center; }
    .map-section iframe { height: 280px; }
}

/* ===================================================
   TEKLİF AL SAYFASI ÖZEL
   =================================================== */

.hero-quote .hero-content h1 {
    font-size: 72px;
}
.hero-quote .hero-content h1 span {
    background: linear-gradient(135deg, #ff6b35, #ffb703);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: start;
}

.quote-form {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    border: 1px solid #edf0f5;
}
.quote-form h3 {
    font-size: 28px;
    margin-bottom: 8px;
}
.quote-form p {
    font-size: 15px;
    color: #667085;
    margin-bottom: 25px;
}
.quote-form .form-group {
    margin-bottom: 20px;
}
.quote-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #111827;
}
.quote-form .form-group label .required {
    color: #ff6b35;
}
.quote-form .form-group input,
.quote-form .form-group textarea,
.quote-form .form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #e4e7ec;
    font-size: 15px;
    transition: .3s;
    font-family: 'Inter', sans-serif;
    background: #fafbfc;
}
.quote-form .form-group input:focus,
.quote-form .form-group textarea:focus,
.quote-form .form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255,107,53,.1);
    background: #fff;
}
.quote-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #e4e7ec;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
    background: #fafbfc;
}
.file-upload-wrapper:hover {
    border-color: #ff6b35;
    background: #fff7f4;
}
.file-upload-wrapper.dragover {
    border-color: #ff6b35;
    background: #fff7f4;
}
.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.file-upload-wrapper i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 10px;
}
.file-upload-wrapper p {
    font-size: 14px;
    color: #667085;
    margin: 0;
}

.file-list-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
}
.file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding: 5px 0;
}
.file-list-empty {
    text-align: center;
    color: #aaa;
    font-size: 13px;
    padding: 10px 0;
}
.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f2f5;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #111827;
    animation: fadeIn 0.2s ease;
}
.file-item .file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 80%;
}
.file-item .file-info i {
    color: #ff6b35;
    font-size: 18px;
    flex-shrink: 0;
}
.file-item .file-info .name {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-item .file-info .size {
    font-size: 12px;
    color: #667085;
    margin-left: 6px;
    flex-shrink: 0;
}
.file-item .remove-file {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
    transition: .2s;
    line-height: 1;
}
.file-item .remove-file:hover {
    transform: scale(1.2);
    color: #a71d2a;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-form .form-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

.quote-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.quote-info .info-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #edf0f5;
}
.quote-info .info-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.quote-info .info-box h4 i {
    color: #ff6b35;
}
.quote-info .info-box ul {
    list-style: none;
    padding: 0;
}
.quote-info .info-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #667085;
}
.quote-info .info-box ul li:last-child {
    border-bottom: none;
}
.quote-info .info-box ul li i {
    color: #ff6b35;
    font-size: 18px;
    width: 24px;
}
.quote-info .info-box .highlight {
    background: #fff7f4;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 15px;
    border-left: 4px solid #ff6b35;
}
.quote-info .info-box .highlight p {
    margin: 0;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-quote .hero-content h1 { font-size: 56px; }
    .quote-form-wrapper { grid-template-columns: 1fr; }
    .quote-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .hero-quote .hero-content h1 { font-size: 40px; }
    .quote-form { padding: 25px; }
    .file-upload-wrapper { padding: 20px; }
    .quote-info .info-box { padding: 20px; }
}

/* ===================================================
   REVEAL EFFECT
   =================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}
.reveal.show {
    opacity: 1;
    transform: none;
}






/* ===================================================
   MENÜ LİNKLERİ - SABİT GÖKKUŞAĞI ÇİZGİSİ
   =================================================== */

.navbar ul li a {
    position: relative;
    text-decoration: none;
    padding-bottom: 4px;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        #ff7f00);
    border-radius: 10px;
    transition: width 0.4s ease;
    /* animation kaldırıldı: renkler sabit */
}

.navbar ul li a:hover::after {
    width: 100%;
}

.navbar ul li a.active-link::after {
    width: 100%;
}

/* Mobil menü için */
@media (max-width: 992px) {
    .navbar ul li a::after {
        bottom: 0;
        height: 1px;
    }
    .navbar ul li a:hover::after,
    .navbar ul li a.active-link::after {
        width: 100%;
    }
}










/* Modal - sol sütun (resim + meta) */
.project-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.modal-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-left img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 400px;
}

/* Meta bilgileri (resmin altı) */
.meta-below-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: #f8f9fc;
    padding: 15px;
    border-radius: 14px;
    border: 1px solid #edf0f5;
}

.meta-below-image div {
    text-align: center;
}

.meta-below-image strong {
    display: block;
    font-size: 12px;
    color: #667085;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-below-image span {
    font-weight: 700;
    color: #111827;
    font-size: 16px;
}

/* Sağ sütun detayları */
.project-modal .details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-modal .details h2 {
    font-size: 28px;
    margin: 0;
}

.project-modal .details p {
    font-size: 16px;
    color: #667085;
    line-height: 1.7;
    margin: 0;
}

/* Teknik detaylar (mevcut) */
.technical-details ul li {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 14px;
    line-height: 1.6;
}
.technical-details ul li strong {
    display: block;
    color: #111827;
    font-weight: 600;
    margin-bottom: 4px;
}
.technical-details ul li span {
    display: block;
    color: #667085;
}




/* ===================================================
   EKSİK STİLLER (DEKORATİF SAYFALARINDAN)
   =================================================== */

/* Teknik detaylar - dekoratif ürün modal'ı */
.technical-details ul li {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 14px;
    line-height: 1.6;
}
.technical-details ul li strong {
    display: block;
    color: #111827;
    font-weight: 600;
    margin-bottom: 4px;
}
.technical-details ul li span {
    display: block;
    color: #667085;
}

/* Modal - sol sütun (resim + meta) - dekoratif-ic-cephe-boyalari.html için */
.project-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.modal-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-left img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 400px;
}

.meta-below-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: #f8f9fc;
    padding: 15px;
    border-radius: 14px;
    border: 1px solid #edf0f5;
}

.meta-below-image div {
    text-align: center;
}

.meta-below-image strong {
    display: block;
    font-size: 12px;
    color: #667085;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-below-image span {
    font-weight: 700;
    color: #111827;
    font-size: 16px;
}

.project-modal .details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-modal .details h2 {
    font-size: 28px;
    margin: 0;
}

.project-modal .details p {
    font-size: 16px;
    color: #667085;
    line-height: 1.7;
    margin: 0;
}









/* ===================================================
   RESPONSIVE - YENİ VE GÜNCELLENMİŞ EKLENTİLER
   =================================================== */

@media (max-width: 992px) {
    /* ... mevcut kodlarınız ... */

    /* Ürün detay modalının mobildeki düzeni */
    .project-modal .modal-content {
        padding: 30px; /* Kenar boşluklarını biraz azaltın */
        width: 95%; /* Genişliği artırın */
        max-width: none; /* Genişliği sınırlandırmayın */
    }

    .project-modal .modal-body {
        grid-template-columns: 1fr; /* Mobilde tek sütuna düşür */
        gap: 20px; /* Boşluğu azalt */
    }

    .modal-left {
        flex-direction: column; /* Mobilde meta bilgilerini resmin altına al */
        align-items: center; /* Merkeze hizala */
        gap: 10px; /* Boşluğu azalt */
    }

    .modal-left img {
        max-height: 250px; /* Resim yüksekliğini sınırla */
        width: auto; /* Genişliği koru */
        margin: 0 auto; /* Merkeze al */
    }

    .meta-below-image {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütun yap */
        gap: 10px; /* Boşluğu azalt */
        width: 100%; /* Tam genişlik yap */
    }

    .meta-below-image div {
        text-align: left; /* Mobilde sola hizala */
    }

    .meta-below-image div strong {
        font-size: 11px; /* Font boyutunu azalt */
    }

    .meta-below-image div span {
        font-size: 14px; /* Font boyutunu azalt */
    }
}

@media (max-width: 768px) {
    /* ... mevcut kodlarınız ... */

    /* Ürün detay modalının mobildeki kenar boşluklarını azaltın */
    .project-modal .modal-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    /* ... mevcut kodlarınız ... */

    /* Ürün listesinin mobildeki görünümü (ÖNEMLİ) */
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun yap */
        gap: 15px; /* Boşluğu azalt */
    }

    .product-card {
        padding: 10px; /* Kart içi boşluğu azalt */
    }

    .product-card img {
        height: 150px; /* Resim yüksekliğini azalt */
    }

    .product-card h4 {
        font-size: 15px; /* Font boyutunu azalt */
    }

    .product-card .price {
        font-size: 16px; /* Font boyutunu azalt */
    }

    .product-card .btn-sm {
        font-size: 11px; /* Font boyutunu azalt */
        padding: 6px 12px; /* Buton içi boşluğu azalt */
    }
}



/* ===================================================
   YENİ EKLEMELER: ÜRÜN RESMİ ÜZERİNE SİYAH ALAN (OVERLAY)
   =================================================== */

/* Ürün kartı resmi hover efekti - temiz ve taşmasız */
.product-card img {
    transition: filter 0.4s ease, transform 0.4s ease;
    display: block;
    width: 100%;
    height: auto; /* orijinal oranını korusun */
}

.product-card:hover img {
    filter: brightness(0.75); /* resmi %75 karartır, isterseniz 0.7 veya 0.8 yapabilirsiniz */
    transform: scale(1.02);   /* hafif büyüme efekti de ekleyebilirsiniz (isteğe bağlı) */
}



/* ===================================================
   YENİ EKLEMELER: MODAL KATEGORİ VE MARKA KUTUCUKLARI
   =================================================== */

/* Alt alanı yan yana (flex) olacak şekilde düzenliyoruz */
.meta-below-image {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
}

/* Kategori ve Marka için ayrı kutucuk tasarımları */
.meta-below-image .meta-box {
    flex: 1;
    background: #f8f9fc;
    border: 1px solid #e4e7ec;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
}

.meta-below-image .meta-box strong {
    display: block;
    font-size: 12px;
    color: #667085;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.meta-below-image .meta-box span {
    display: block;
    font-weight: 700;
    color: #111827;
    font-size: 15px;
}





/* ===================================================
   FEATURES - TAŞMA ÖNLEME (EK)
   =================================================== */

.feature-wrapper {
    width: 100%;
    overflow: hidden; /* yatay taşmayı engeller */
}

.feature-item {
    min-width: 0;          /* grid taşmasını önler */
    word-break: break-word; /* uzun kelimeleri kırar */

}

/* Daha küçük ekranlarda padding ve gap'i azalt */
@media (max-width: 992px) {
    .feature-wrapper {
        padding: 25px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .feature-wrapper {
        padding: 20px;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .feature-wrapper {
        padding: 15px;
        gap: 12px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center; /* ikon ve metni ortalar */
    }

    .feature-item i {
        margin-bottom: 6px; /* ikon ile metin arası boşluk */
    }
}

@media (max-width: 992px) {
    /* ... mevcut diğer kurallar ... */

    .feature-item {
        flex-direction: column;    /* ikon ve metni alt alta getir */
        text-align: center;        /* metni ortala */
        align-items: center;       /* yatayda ortala */
    }
}









/* ===================================================
   HİZMETLER SAYFASI ÖZEL
   =================================================== */

.hero-services .hero-content h1 {
    font-size: 72px;
}
.hero-services .hero-content h1 span {
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hizmet grid yapısı */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

/* Her bir hizmet kartı */
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #edf0f5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-color: #7c3aed;
}

/* İkon ve başlık satırı */
.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed15, #7c3aed05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #7c3aed;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

/* İçerik metni */
.service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
    margin: 0 0 10px 0;
}
.service-card p:last-child {
    margin-bottom: 0;
}

/* Liste stilleri (özel simge) */
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 5px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}
.service-card ul li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: #111827;
    line-height: 1.6;
}
.service-card ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
}

/* Grup başlıkları */
.service-group-title {
    grid-column: 1 / -1;
    margin: 30px 0 10px 0;
    text-align: center;
}
.service-group-title h3 {
    display: inline-block;
    background: #fff;
    padding: 8px 30px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 700;
    color: #7c3aed;
    border: 1px solid #edf0f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.service-group-title h3 i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .service-card ul {
        grid-template-columns: 1fr;
    }
    .hero-services .hero-content h1 {
        font-size: 56px;
    }
}
@media (max-width: 576px) {
    .hero-services .hero-content h1 {
        font-size: 40px;
    }
    .service-card {
        padding: 25px 20px;
    }
    .service-card h3 {
        font-size: 19px;
    }
}


/* ===================================================
   NEDEN HPC BOYA? - WHY GRID (DÜZENLİ)
   =================================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Kartların görünümünü service-card’a benzet */
.why-card {
    background: #f8f9fc;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #edf0f5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: #7c3aed;
}

.why-card i {
    font-size: 48px;
    color: #7c3aed;
}

.why-card h4 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #667085;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}










/* ================= YENİ FOOTER ================= */
.footer-new {
    background: #0b1120;
    color: #cdd5e0;
    padding: 60px 0 20px;
    font-size: 15px;
    line-height: 1.7;
    border-top: 3px solid #e30613;
}

.footer-new .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-new-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #e30613;
    border-radius: 4px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #cdd5e0;
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
    display: inline-block;
}
.footer-col ul li a:hover {
    color: #ffb703;
    padding-left: 6px;
}

/* Logo & açıklama */
.footer-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
}
.footer-about-text {
    margin-bottom: 20px;
    max-width: 260px;
    color: #b0bcca;
}

/* Sosyal medya ikonları */
.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #cdd5e0;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}
.footer-social a:hover {
    background: #e30613;
    color: #fff;
    transform: translateY(-3px);
}

/* İletişim listesi */
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: #cdd5e0;
}
.footer-contact li i {
    color: #e30613;
    font-size: 18px;
    min-width: 22px;
    margin-top: 3px;
}
.footer-contact a {
    color: #cdd5e0;
    text-decoration: none;
    transition: color 0.25s;
}
.footer-contact a:hover {
    color: #ffb703;
}

/* CTA butonu (footer içinde) */
.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient); /* Ana buton gradient'i kullan */
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 12px;
    border: none;
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25); /* Hafif gölge */
}
.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    background: var(--gradient); /* Hover'da da aynı gradient korunsun */
    color: #fff;
}

/* Alt bölüm (telif) */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #7f8b9e;
}
.footer-bottom ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-bottom ul li a {
    color: #7f8b9e;
    text-decoration: none;
    transition: color 0.25s;
}
.footer-bottom ul li a:hover {
    color: #ffb703;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .footer-new-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    .footer-col:first-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-new-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-col:first-child {
        grid-column: span 2;
    }
    .footer-col h4::after {
        width: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-new-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-col:first-child {
        grid-column: span 1;
    }
    .footer-logo {
        max-width: 300px;
    }
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }
    .btn-footer {
        width: 100%;
        justify-content: center;
    }
}




/* ================= YENİ FOOTER ================= */
.footer-new {
    background: #0b1120;
    color: #cdd5e0;
    padding: 60px 0 20px;
    font-size: 15px;
    line-height: 1.7;
    border-top: 3px solid #ff6b35;   /* KIRMIZI YERİNE TURUNCU */
}

/* Başlık altı çizgisi */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #ff6b35;            /* KIRMIZI YERİNE TURUNCU */
    border-radius: 4px;
}

/* İletişim ikonları */
.footer-contact li i {
    color: #ff6b35;                 /* KIRMIZI YERİNE TURUNCU */
    font-size: 18px;
    min-width: 22px;
    margin-top: 3px;
}

/* Sosyal medya ikonları – hover */
.footer-social a:hover {
    background: #ff6b35;            /* KIRMIZI YERİNE TURUNCU */
    color: #fff;
    transform: translateY(-3px);
}

/* CTA butonu (footer içindeki "Teklif Al") */
.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b35;            /* KIRMIZI YERİNE TURUNCU */
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 12px;
    border: none;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.btn-footer:hover {
    background: #ffb703;            /* HOVER’DA ALTIN SARISI */
    color: #0b1120;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.35);
}




/* ===================================================
   ENDÜSTRİYEL KATEGORİ AYIRICI ÇİZGİLER (DÜZELTİLMİŞ)
   =================================================== */

/* .container içindeki kategori div'lerini hedefle, sonuncuyu ve başlık div'ini hariç tut */
#agir-sanayi-astarlari .container > div:not(.section-head):not(:last-child),
#urunler .container > div:not(.section-head):not(:last-child),
#zemin-sistemleri .container > div:not(.section-head):not(:last-child),
#yangin-boyalari .container > div:not(.section-head):not(:last-child) {
    border-bottom: 2px solid #d1d5db;   /* Açık gri çizgi */
    padding-bottom: 35px;               /* Çizgi ile içerik arası boşluk */
    margin-bottom: 35px;                /* Çizgi ile sonraki başlık arası boşluk */
}