
:root {
            --primary-color: #222222;
            --secondary-color: #fec800;
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --white-color: #ffffff;
            --gray-color: #6c757d;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --border-color: #dee2e6;
            --brand-yellow:#ffd31a; /* sarı */
            --brand-black:#111;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-weight: 500;
            text-align: center;
        }

        .btn:hover {
            background-color: #000;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 600;
        }

        .btn-secondary:hover {
            background-color: #e5b300;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }

        

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 5px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 15px;
            transition: all 0.3s ease;
        }

        /* === LOGO + METİN (TEMİZ / TEK BLOK) === */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800;900&display=swap');

:root{
  --brand-yellow: #ffd31a; /* İNCELER kapsül rengi */
  --logo-h: 72px;          /* logo + metin yüksekliği (isteğine göre değiştir) */
  --logo-gap: 16px;        /* logo ile metin arası yatay boşluk */
  --logo-line-gap: 2px;    /* İNCELER ↕ YAPI MARKET arası dikey boşluk */
  --inceler-pad-y: 2px;    /* İNCELER kapsül dikey padding */
}

/* logo hizalaması: görsel SOL, metin SAĞ */
.logo{
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap: var(--logo-gap);
  flex-direction: row !important;
}

/* logo görseli */
.logo img{
  height: var(--logo-h);
  width:auto;
  margin-right: 0 !important; /* çifte boşluğu önle */
}

/* metin grubu (logo yüksekliği içine ortalanır) */
.logo .logo-text{
  height: var(--logo-h);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;     /* iki satırı yatayda tam merkez */
  line-height:1;
  gap: var(--logo-line-gap);
  text-align:center;
}

/* yazı stili (ikisi için ortak) */
.logo .brand-inceler,
.logo .brand-sub{
  font-family: "Orbitron", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  color:#111;
  display:block;
  margin:0 auto;
}

/* İNCELER: sarı kavisli kapsül */
.logo .brand-inceler{
  font-weight:900;
  font-size: calc(var(--logo-h) * 0.27); /* ~19–22px aralığı için */
  background: var(--brand-yellow);
  padding: var(--inceler-pad-y) 12px;
  border-radius: 999px;
  white-space: nowrap;
  display:inline-block;
  line-height:1;
}

/* YAPI MARKET: aynı font, daha küçük */
.logo .brand-sub{
  font-weight:700;
  font-size: calc(var(--logo-h) * 0.16); /* ~11–13px */
  line-height:1;
}

/* Eski .logo span rengini ezmek için emniyet */
.logo span.brand-inceler,
.logo span.brand-sub{
  color:#111 !important;
}

/* RESPONSIVE */
@media (max-width: 992px){
  :root{ --logo-h: 60px; --logo-gap: 14px; --logo-line-gap: 1px; }
  .logo .brand-inceler{ padding: calc(var(--inceler-pad-y) * 1) 10px; }
}

@media (max-width: 768px){
  :root{ --logo-h: 50px; --logo-gap: 10px; --logo-line-gap: 1px; }
  .logo .brand-inceler{ padding: calc(var(--inceler-pad-y) * 1) 8px; }
}



        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: 20px;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
        }

        main {
            padding-top: 75px;
        }

        .hero-slider {
            height: 700px;
            max-height: 85vh;
            position: relative;
            background-color: #333;
        }

        .slide {
            height: 700px;
            max-height: 85vh;
            background-size: contain;
            background-position: center;
            position: relative;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            max-width: 900px;
            padding: 40px;
            z-index: 1;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .slide-content .btn {
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
            margin: 0 10px;
        }

        .slick-dots {
            bottom: 30px;
        }

        .slick-dots li button:before {
            font-size: 12px;
            color: white;
        }

        .slick-dots li.slick-active button:before {
            color: var(--secondary-color);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white-color);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 50px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .testimonials {
            background-color: var(--primary-color);
        }

        .testimonials .section-title h2,
        .testimonials .section-title p {
            color: white;
        }

        .testimonial-slider {
            width: 90%;
            margin: 0 auto;
        }

        .testimonial-item {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 0 15px;
            text-align: center;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .testimonial-item::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            color: rgba(0, 0, 0, 0.05);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-item img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 3px solid var(--secondary-color);
        }

        .testimonial-item .rating {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .testimonial-item .comment {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            flex-grow: 1;
            color: #555;
        }

        .testimonial-item h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .testimonial-item .customer-title {
            font-size: 0.9em;
            color: var(--gray-color);
        }

        .slick-prev,
        .slick-next {
            font-size: 0;
            line-height: 0;
            position: absolute;
            top: 50%;
            display: block;
            width: 40px;
            height: 40px;
            padding: 0;
            transform: translate(0, -50%);
            cursor: pointer;
            color: transparent;
            border: none;
            outline: none;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            z-index: 10;
            transition: background 0.3s;
        }

        .slick-prev:hover,
        .slick-next:hover {
            background: white;
        }

        .slick-prev {
            left: 25px;
        }

        .slick-next {
            right: 25px;
        }

        .slick-prev:before,
        .slick-next:before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 20px;
            line-height: 1;
            opacity: .75;
            color: var(--primary-color);
            -webkit-font-smoothing: antialiased;
        }

        .slick-prev:before {
            content: '\f053';
        }

        .slick-next:before {
            content: '\f054';
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1050;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 40px;
            border-radius: 8px;
            max-width: 450px;
            position: relative;
            animation: slideDown 0.5s ease;
        }

        .close-btn {
            color: #aaa;
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal h2 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 16px;
        }

        .password-group {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            cursor: pointer;
            color: var(--gray-color);
        }

        .form-text {
            text-align: center;
            margin-top: 20px;
            color: var(--gray-color);
        }

        .form-text a {
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .btn-cart {
            background: none;
            border: none;
            color: var(--dark-color);
            font-size: 22px;
            cursor: pointer;
            position: relative;
            padding: 5px;
        }

        .btn-cart:hover {
            color: var(--primary-color);
        }

        .cart-item-count {
            position: absolute;
            top: -5px;
            right: -8px;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 11px;
            font-weight: bold;
            line-height: 1;
            display: none;
        }

        #cart-modal .cart-content {
            max-width: 700px;
        }

        .cart-items {
            max-height: 50vh;
            overflow-y: auto;
            margin-bottom: 20px;
            padding-right: 10px;
        }

        .cart-empty-msg {
            text-align: center;
            color: var(--gray-color);
            padding: 40px 0;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .cart-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .cart-item-details {
            flex-grow: 1;
        }

        .cart-item-details h5 {
            margin: 0 0 5px 0;
            font-size: 1rem;
        }

        .cart-item-details p {
            margin: 0;
            font-weight: 600;
            color: var(--primary-color);
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cart-item-actions .quantity-input {
            width: 60px;
            text-align: center;
            padding: 8px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
        }

        .cart-item-actions .remove-item-btn {
            background: none;
            border: none;
            color: var(--danger-color);
            font-size: 18px;
            cursor: pointer;
            padding: 5px;
            transition: color 0.3s;
        }

        .cart-item-actions .remove-item-btn:hover {
            color: #a71d2a;
        }

        .cart-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid var(--secondary-color);
        }

        .cart-total {
            font-size: 1.2rem;
        }

        .cart-total strong {
            color: var(--primary-color);
        }

        #checkout-btn:disabled {
            background-color: var(--gray-color);
            cursor: not-allowed;
        }

        .contact {
            background-color: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            align-items: center;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-card {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            font-size: 24px;
            color: var(--secondary-color);
            min-width: 40px;
            text-align: center;
            padding-top: 5px;
        }

        .contact-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .contact-form {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        footer {
            background-color: #222;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-column p {
            margin-bottom: 15px;
            color: #bbb;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
            color: white;
        }

        .social-links a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 992px) {
            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 30px 30px;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                z-index: 1000;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-links {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 30px;
                width: 100%;
            }

            .header-actions {
                margin-left: 0;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }

            .auth-buttons {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .map-overlay {
                position: relative;
                top: auto;
                right: auto;
                margin: 20px 0 0;
                max-width: 100%;
            }
        }
