/* --- GENEL KURUMSAL RENKLER & TYPOGRAPHY --- */
        :root {
            --daikin-blue: #00A1E0;
            --daikin-dark: #002D5A;
            --text-color: #444444;
            --bg-light: #f4f7f9;
            --radius-soft: 12px;
        }

        body { font-family: 'Open Sans', sans-serif; color: var(--text-color); background-color: #fff; }

        /* --- TOP BAR --- */
        .top-bar { background-color: var(--daikin-dark); color: #e0e0e0; font-size: 13px; padding: 20px 0; min-height: 72px; font-weight: 600; }
        .top-bar .row { align-items: center; }
        .top-bar a { color: #e0e0e0; text-decoration: none; transition: 0.3s; }
        .top-bar a:hover { color: var(--daikin-blue); }
        .top-bar-brand { display: inline-flex; align-items: center; justify-content: flex-end; }
        .top-bar-brand img { display: block; width: auto; height: 40px; max-width: 240px; object-fit: contain; }

        /* --- NAVBAR & RESİMLİ MEGA MENÜ --- */
        .navbar { background-color: #ffffff; box-shadow: 0 8px 25px rgba(0,0,0,0.06); padding: 15px 0; }
        .navbar-brand img { height: 48px; transition: transform 0.3s; }
        .navbar-brand:hover img { transform: scale(1.05); }
        .nav-link { font-weight: 800; color: var(--daikin-dark) !important; font-size: 13px; padding: 10px 15px !important; transition: 0.3s; letter-spacing: 0.5px; border-radius: 6px;}
        .nav-link:hover, .navbar-nav .dropdown:hover > .nav-link { color: var(--daikin-blue) !important; background: rgba(0,161,224,0.08); }
        .navbar .nav-link.is-active,
        .navbar .nav-link.active-page,
        .navbar .nav-link[aria-expanded="true"] { color: var(--daikin-blue) !important; background: rgba(0,161,224,0.12); }
        .navbar .nav-link.is-active::after,
        .navbar .nav-link.active-page::after { color: var(--daikin-blue); }
        
        /* Mega Menü Yapısı */
        @media all and (min-width: 992px) {
            .navbar .container { position: relative; }
            .navbar-nav > .nav-item.dropdown { position: relative; }
            .navbar .nav-item.dropdown:hover > .dropdown-menu,
            .navbar .nav-item.dropdown.show > .dropdown-menu { display: block; opacity: 1; visibility: visible; }
            .navbar .nav-item > .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease; border: none; box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-radius: 8px; margin-top: 12px; padding: 0; overflow: hidden; max-width: calc(100vw - 32px); max-height: calc(100vh - 122px); overflow-y: auto; top: calc(100% - 2px); }
            .navbar-nav > .nav-item.dropdown > .dropdown-menu { left: 50%; right: auto; transform: translate(-50%, 10px); }
            .navbar-nav > .nav-item.dropdown:hover > .dropdown-menu,
            .navbar-nav > .nav-item.dropdown.show > .dropdown-menu { transform: translate(-50%, 0); }
            .navbar-nav > .nav-item.dropdown > .dropdown-menu:not(.mega-menu) { width: min(360px, calc(100vw - 32px)); min-width: min(290px, calc(100vw - 32px)); }
            .mega-menu { width: min(720px, calc(100vw - 32px)); min-width: min(650px, calc(100vw - 32px)); }
            .mega-menu-inner { display: flex; }
            .mega-menu-links { flex: 1; padding: 25px; }
            .mega-menu-img { width: 280px; background-size: cover; background-position: center; position: relative; }
            .mega-menu-img::before { content:''; position: absolute; inset:0; background: linear-gradient(to right, rgba(0,45,90,0.8), transparent); }
            .mega-menu-img span { position: absolute; bottom: 20px; left: 20px; color: #fff; font-weight: 800; font-size: 20px; z-index: 2; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
            
            .mega-menu { overflow: hidden; }
        }

        /* İç içe menüler: yana değil, aşağı doğru akordeon */
        .navbar .dropdown-submenu { position: static; }
        .navbar .dropdown-submenu > .dropdown-menu {
            position: static;
            display: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            min-width: 0;
            max-width: none;
            max-height: none;
            overflow: visible;
            margin: 4px 0 8px 14px;
            padding: 6px 0 6px 10px !important;
            border: 0;
            border-left: 2px solid var(--daikin-blue);
            border-radius: 0;
            background: #f7fafc;
        }
        .navbar .dropdown-submenu.open > .dropdown-menu { display: block; }
        .navbar .dropdown-submenu > .dropdown-toggle::after {
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            border: 0;
            margin-left: auto;
            color: #7b8794;
            font-size: 12px;
            transition: transform 0.22s ease, color 0.22s ease;
        }
        .navbar .dropdown-submenu.open > .dropdown-toggle::after {
            transform: rotate(180deg);
            color: var(--daikin-blue);
        }
        .navbar .dropdown-submenu .fa-caret-right { display: none !important; }
        .navbar .dropdown-submenu > .dropdown-toggle { white-space: normal; gap: 12px; }
        
        .mega-title { font-size: 14px; font-weight: 800; color: var(--daikin-blue); border-bottom: 2px solid #eee; padding-bottom: 10px; margin-bottom: 15px; text-transform: uppercase;}
        .dropdown-item { font-weight: 600; color: #555; font-size: 13.5px; padding: 8px 15px; transition: 0.2s; border-radius: 6px; margin-bottom: 2px;}
        .navbar .dropdown-menu:not(.mega-menu) .dropdown-item { white-space: normal; }
        .dropdown-item:hover { background-color: var(--bg-light); color: var(--daikin-blue); padding-left: 22px; }
        .dropdown-item.active-page,
        .dropdown-item.is-active { background-color: rgba(0,161,224,0.12); color: var(--daikin-blue); font-weight: 800; }

        /* --- OKLU & NOKTALI FULLSCREEN SLIDER --- */
        .carousel-item { height: calc(100vh - 130px); min-height: 500px; background: no-repeat center center scroll; background-size: cover; }
        .carousel-item::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 45, 90, 0.85), rgba(0, 0, 0, 0.2)); }
        .carousel-caption { bottom: 35%; text-align: left; left: 10%; right: 10%; animation: fadeInUp 1s ease-out; }
        .carousel-caption h2 { font-size: 4rem; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 15px;}
        .carousel-caption p { font-size: 1.6rem; font-weight: 400; margin-bottom: 35px; opacity: 0.9;}
        .btn-daikin { background-color: var(--daikin-blue); color: #fff; padding: 11px 24px; font-weight: 700; border-radius: 6px; text-transform: uppercase; border: none; transition: all 0.25s ease; text-decoration: none; display: inline-block; font-size: 12.5px; letter-spacing: 0.2px; line-height: 1.35;}
        .btn-daikin:hover { background-color: #111827; color: #fff; box-shadow: 0 8px 18px rgba(17,24,39,0.22); transform: translateY(-2px); }
        
        /* Slider Okları */
        .carousel-control-prev,
        .carousel-control-next { width: 82px; opacity: 1; }
        .carousel-control-prev { left: 18px; }
        .carousel-control-next { right: 18px; }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 50px;
            height: 50px;
            padding: 0;
            border-radius: 50%;
            background-color: rgba(0, 45, 90, 0.58);
            background-size: 18px 18px;
            background-position: center;
            border: 1px solid rgba(255,255,255,0.28);
            box-shadow: 0 12px 28px rgba(0,0,0,0.22);
            transition: 0.25s ease;
        }
        .carousel-control-prev:hover .carousel-control-prev-icon,
        .carousel-control-next:hover .carousel-control-next-icon {
            background-color: var(--daikin-blue);
            transform: scale(1.06);
        }
        
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        /* --- 3'LÜ GÜVEN ROZETLERİ (SLIDER ÜSTÜNE BİNEN) --- */
        .features-section { position: relative; z-index: 10; margin-top: -60px; margin-bottom: 60px; }
        .feature-box { background: #fff; padding: 35px 25px; border-radius: var(--radius-soft); box-shadow: 0 15px 40px rgba(0,0,0,0.08); text-align: center; transition: all 0.4s ease; height: 100%; border-bottom: 4px solid transparent; }
        .feature-box:hover { transform: translateY(-15px); border-bottom-color: var(--daikin-blue); box-shadow: 0 25px 50px rgba(0,0,0,0.12); }
        .feature-icon { font-size: 45px; color: var(--daikin-blue); margin-bottom: 20px; }
        .feature-box h5 { font-weight: 800; color: var(--daikin-dark); font-size: 18px; text-transform: uppercase; margin-bottom: 10px;}
        .feature-box p { color: #666; font-size: 14px; margin: 0; line-height: 1.6;}

        /* --- SEKMELİ YAPI (TABS) --- */
        .main-tab-section { margin-bottom: 60px; }
        .nav-pills.custom-tabs { background: var(--bg-light); border-radius: var(--radius-soft) var(--radius-soft) 0 0; padding: 5px 20px 0; }
        .custom-tabs .nav-link { color: #777; font-weight: 800; font-size: 16px; padding: 20px 30px; border-radius: var(--radius-soft) var(--radius-soft) 0 0; background: transparent; text-transform: uppercase; transition: 0.3s; margin-right: 5px;}
        .custom-tabs .nav-link.active { color: var(--daikin-blue); background: #fff; box-shadow: 0 -5px 15px rgba(0,0,0,0.03); }
        
        .tab-content-box { position: relative; border-radius: 0 0 var(--radius-soft) var(--radius-soft); overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.06); background: #fff;}
        .tab-img { width: 100%; height: 500px; object-fit: cover; }
        .tab-overlay-card { position: absolute; top: 50%; right: 5%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.95); padding: 50px; border-radius: var(--radius-soft); width: 45%; box-shadow: 0 20px 50px rgba(0,0,0,0.15); backdrop-filter: blur(10px); }
        .tab-overlay-card .title { font-size: 32px; font-weight: 800; color: var(--daikin-dark); margin-bottom: 20px; line-height: 1.2;}
        .tab-overlay-card .description { font-size: 15px; color: #555; margin-bottom: 30px; line-height: 1.7; }
        @media (max-width: 991px) { .tab-overlay-card { position: relative; width: 100%; top: auto; right: auto; transform: none; border-radius: 0; padding: 30px;} .tab-img { height: 300px; } }
        @media (max-width: 991px) {
            .navbar { padding: 10px 0; }
            .navbar-brand img { height: 42px; }
            .navbar-collapse { max-height: calc(100vh - 78px); overflow-y: auto; padding: 12px 0; }
            .navbar-nav { align-items: stretch !important; }
            .nav-link { padding: 12px 4px !important; font-size: 13px; }
            .navbar .dropdown-menu {
                position: static !important;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: 0;
                border-radius: 0;
                margin: 0;
                padding: 6px 0 8px 10px !important;
                background: #f7fafc;
            }
            .navbar .dropdown-menu.show { display: block; }
            .navbar .dropdown-submenu > .dropdown-menu { background: #fff; margin-left: 10px; }
            .mega-menu { min-width: 0; width: 100%; }
            .mega-menu-inner { display: block; }
            .mega-menu-links { padding: 10px 0; }
            .mega-menu-links .row { margin-left: 0; margin-right: 0; }
            .mega-menu-links .col-6 { width: 100%; }
            .dropdown-item { white-space: normal; padding: 9px 12px; }
        }

        /* --- İKİLİ BANNER (FUHA & REFERANS) --- */
        .image-banner { position: relative; overflow: hidden; border-radius: var(--radius-soft); height: 100%; min-height: 400px; display: flex; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.08);}
        .image-banner img { position: absolute; top:0; left:0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .image-banner:hover img { transform: scale(1.08); }
        .image-banner::before { content: ""; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to right, rgba(0,45,90,0.95) 0%, rgba(0,45,90,0.1) 100%); z-index: 1; }
        .banner-content { position: relative; z-index: 2; padding: 50px; color: #fff; width: 85%;}
        .banner-content .title { display: block; font-size: 36px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; letter-spacing: -0.5px;}
        .banner-content .text { display: block; font-size: 15px; line-height: 1.7; margin-bottom: 30px; font-weight: 400; opacity: 0.9;}
        .banner-content .link { color: var(--daikin-dark); font-weight: 800; text-decoration: none; background: #fff; padding: 12px 30px; border-radius: 30px; display: inline-block; transition: 0.3s; font-size: 14px;}
        .banner-content .link:hover { background: var(--daikin-blue); color: #fff; box-shadow: 0 10px 20px rgba(0,161,224,0.3);}

        /* --- 3'LÜ TALEP KUTULARI --- */
        .request-box { text-align: center; text-decoration: none; display: flex; flex-direction: column; align-items: center; padding: 40px 20px; border-radius: var(--radius-soft); background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: 0.4s ease; height: 100%; border: 1px solid rgba(0,0,0,0.03);}
        .request-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,161,224,0.1); border-color: rgba(0,161,224,0.3); }
        .request-box img { max-width: 130px; margin-bottom: 25px; transition: 0.4s; }
        .request-box:hover img { transform: scale(1.1) rotate(2deg); }
        .request-box strong { display: block; font-size: 20px; color: var(--daikin-dark); margin-bottom: 15px; font-weight: 800; }
        .request-box p { color: #666; font-size: 15px; margin: 0; line-height: 1.6;}

        /* --- MAVİ SERVİS CTA ALANI --- */
        .service-bg { background: linear-gradient(135deg, var(--daikin-dark) 0%, #004488 100%); padding: 90px 0; color: #fff; margin: 80px 0; position: relative; border-radius: var(--radius-soft); box-shadow: 0 20px 40px rgba(0,45,90,0.2);}
        .service-bg .title { font-size: 38px; font-weight: 800; margin-bottom: 25px; color: #fff; letter-spacing: -1px;}
        .blue-list-wrap span { display: inline-block; background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 30px; margin: 0 12px 12px 0; font-size: 14px; font-weight: 700; backdrop-filter: blur(5px);}
        .blue-list-wrap span::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #4ade80; margin-right: 10px; font-size: 16px;}
        .service-bg .description p { font-size: 17px; opacity: 0.9; margin: 25px 0 35px; line-height: 1.8; }
        
        /* --- 4'LÜ ÖZELLİK (MAKSİMUM KONFOR VS) --- */
        .feature-item { text-align: center; padding: 30px 20px; transition: 0.3s; border-radius: var(--radius-soft);}
        .feature-item:hover { background: var(--bg-light); }
        .feature-item i { font-size: 50px; color: var(--daikin-blue); margin-bottom: 25px; transition: 0.3s;}
        .feature-item:hover i { transform: scale(1.1); color: var(--daikin-dark);}
        .feature-item strong { display: block; font-size: 17px; color: var(--daikin-dark); margin-bottom: 15px; font-weight: 800; text-transform: uppercase;}
        .feature-item p { color: #666; font-size: 15px; line-height: 1.6; }

        /* --- KAPSAMLI FOOTER --- */
        .footer { background-color: #00152b; color: #e0e0e0; padding: 80px 0 30px; font-size: 14px; }
        .footer-logo { max-width: 200px; margin-bottom: 30px; filter: brightness(0) invert(1); }
        .footer-title { color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 30px; text-transform: uppercase; position: relative; padding-bottom: 12px; }
        .footer-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background-color: var(--daikin-blue); border-radius: 2px;}
        .footer-list { list-style: none; padding: 0; margin: 0; }
        .footer-list li { margin-bottom: 15px; }
        .footer-list a { color: #a0b0c0; text-decoration: none; transition: 0.3s; display: flex; align-items: center; font-size: 14.5px;}
        .footer-list a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 10px; font-size: 12px; color: var(--daikin-blue); transition: 0.3s;}
        .footer-list a:hover { color: #fff; padding-left: 8px;}
        .footer-contact li { display: flex; align-items: flex-start; margin-bottom: 20px; color: #a0b0c0; font-size: 15px;}
        .footer-contact i { color: var(--daikin-blue); font-size: 20px; margin-right: 15px; margin-top: 2px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 60px; padding-top: 25px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;}
        .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.05); color: #fff; border-radius: 50%; margin-left: 10px; transition: 0.3s; font-size: 16px;}
        .social-links a:hover { background: var(--daikin-blue); transform: translateY(-3px);}

        /* --- WHATSAPP BUTONU --- */
        .whatsapp-float { position: fixed; width: 65px; height: 65px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 35px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; }
        .whatsapp-float:hover { background-color: #1ebe57; color: #fff; transform: scale(1.15) rotate(-5deg); }
		
		
		
		
		/* --- ÜRÜN KARTLARI & ÖZELLİK HOVER EFEKTİ (GÜNCELLENDİ) --- */
        .product-section-title { font-size: 28px; font-weight: 800; color: var(--daikin-dark); border-bottom: 3px solid var(--daikin-blue); display: inline-block; padding-bottom: 10px; margin-bottom: 30px; text-transform: uppercase;}
        
        .product-list .row { display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px; }
        
        .p-item { margin-bottom: 30px; perspective: 1000px; padding-left: 15px; padding-right: 15px; }
        .p-item-inside { position: relative; background: #fff; border-radius: var(--radius-soft); border: 1px solid #eee; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: all 0.4s ease; height: 100%; display: flex; flex-direction: column;}
        .p-item:hover .p-item-inside { box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: rgba(0,161,224,0.3); z-index: 20; }
        
        /* Favori Butonu */
        .p-favorite { position: absolute; top: 15px; right: 15px; z-index: 5;}
        .btn-fav { color: #ccc; font-size: 20px; transition: 0.3s; text-decoration: none;}
        .btn-fav:hover, .btn-fav.active { color: #ff4757; transform: scale(1.2); }

        /* Görsel Alanı */
        .p-image { text-align: center; padding: 25px 20px 10px; position: relative; background: #fff; z-index: 2;}
        .p-image img { max-width: 100%; height: auto; max-height: 200px; object-fit: contain; transition: transform 0.5s; }
        .p-item:hover .p-image img { transform: scale(1.05); }
        
        /* Temel Bilgiler */
        .p-info { padding: 10px 20px 20px; text-align: center; background: #fff; z-index: 2; flex-grow: 1; display: flex; flex-direction: column;}
        .p-model a { color: #888; font-size: 12px; font-weight: 600; text-decoration: none; display: block; margin-bottom: 5px; text-transform: uppercase;}
        .p-name a { color: var(--daikin-dark); font-size: 15px; font-weight: 800; text-decoration: none; line-height: 1.3; display: block; margin-bottom: 10px;}
        .p-name a:hover { color: var(--daikin-blue); }
        .p-price .one-price { font-size: 22px; font-weight: 800; color: var(--daikin-blue); display: block; margin-bottom: 10px;}
        
        .energy-info-wrap { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px dashed #eee;}
        .energy-tags img { height: 30px; width: auto;}
        .information-tags a { color: #666; font-size: 12px; text-decoration: underline; transition: 0.3s; font-weight: 600;}
        .information-tags a:hover { color: var(--daikin-blue); }

        /* --- HOVER İLE AÇILAN DETAY (TAM SIĞACAK ŞEKİLDE DÜZENLENDİ) --- */
        .p-hover-right { position: absolute; top: 100%; left: 0; width: 100%; height: 100%; background: rgba(0, 45, 90, 0.98); color: #fff; z-index: 10; padding: 15px; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; flex-direction: column; overflow-y: auto;}
        .p-item:hover .p-hover-right { top: 0; }
        
        .btn-hover-close { position: absolute; top: 10px; right: 10px; color: #fff; font-size: 18px; opacity: 0; transition: 0.3s; cursor: pointer;}
        .p-item:hover .btn-hover-close { opacity: 1; }
        
        .p-features { flex-grow: 1; opacity: 0; transform: translateY(15px); transition: all 0.5s ease 0.1s; }
        .p-item:hover .p-features { opacity: 1; transform: translateY(0); }
        
        .p-features .list { margin-bottom: 12px; }
        .p-features .heading { font-size: 13px; font-weight: 800; color: var(--daikin-blue); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 5px; margin-bottom: 8px; display: flex; align-items: center;}
        .p-features .heading img { margin-right: 6px; filter: brightness(0) invert(1); width: 14px;}
        .p-features ul { list-style: none; padding: 0; margin: 0; }
        .p-features li { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.2;}
        .p-features li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0;}
        .p-features .first { color: #cbd5e1; font-weight: 400;}
        .p-features .last { font-weight: 700; color: #fff;}
        .p-features .last.icon { background: #4ade80; color: #fff; padding: 1px 5px; border-radius: 4px; font-size: 10px;}
        
        .features-desc { font-size: 10.5px; color: #94a3b8; line-height: 1.3; margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,0.2);}
        .features-desc p { color: #fff; font-weight: 700; margin-bottom: 4px; font-size: 11px;}
        .features-desc ul { padding-left: 12px; list-style-type: disc; margin-bottom: 0;}

        /* Butonlar */
        .p-actions { position: relative; z-index: 15; background: #fff; padding: 0 15px 15px; border-radius: 0 0 var(--radius-soft) var(--radius-soft);}
        .p-item:hover .p-actions { background: rgba(0, 45, 90, 0.98); }
        .btn-quote { width: 100%; background: var(--daikin-blue); color: #fff; border: none; padding: 9px 12px; font-weight: 700; border-radius: 6px; text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.15px; transition: 0.25s; display: flex; justify-content: center; align-items: center;}
        .btn-quote i { margin-right: 6px; font-size: 12px; }
        .btn-quote:hover { background: #111827; color: #fff; box-shadow: 0 5px 15px rgba(17,24,39,0.24); }
        .product-badge { position: absolute; top: 15px; left: 15px; z-index: 5; background: #0097e6; color: #fff; padding: 4px 9px; font-size: 10.5px; font-weight: 800; border-radius: 4px; text-transform: uppercase; box-shadow: 0 2px 5px rgba(0,151,230,0.22); }
        .engineering-info { gap: 10px; align-items: flex-start; }
        .engineering-tags { display: flex; flex-wrap: wrap; gap: 6px; text-align: left; }
        .engineering-tags span { display: inline-flex; align-items: center; min-height: 24px; background: #eef7fb; color: var(--daikin-dark); border: 1px solid #d9edf7; border-radius: 4px; padding: 4px 7px; font-size: 11px; font-weight: 800; }


/* --- ÇOK SAYFALI ÜRÜN YAPISI & FİLTRELER --- */
html { scroll-behavior: smooth; }
.navbar-toggler { border: 1px solid rgba(0,45,90,0.18); }
.page-visual { min-height: 340px; background-size: cover; background-position: center; }
.page-intro { padding: 45px 12px 25px; }
.page-eyebrow { display: inline-block; color: var(--daikin-blue); font-weight: 800; text-transform: uppercase; font-size: 13px; margin-bottom: 10px; }
.page-intro h1, .section-heading h2 { color: var(--daikin-dark); font-weight: 800; letter-spacing: 0; margin-bottom: 14px; }
.page-intro h1 { font-size: 38px; }
.page-intro p, .section-heading p { max-width: 880px; color: #5d6874; line-height: 1.8; font-size: 16px; margin-bottom: 0; }
.section-heading p { margin-left: auto; margin-right: auto; }
.page-section { padding: 25px 12px 80px; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.category-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.category-card { display: flex; flex-direction: column; min-height: 100%; background: #fff; border: 1px solid #e8eef4; border-radius: 8px; overflow: hidden; text-decoration: none; box-shadow: 0 10px 28px rgba(0,0,0,0.05); transition: 0.3s ease; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(0,45,90,0.12); border-color: rgba(0,161,224,0.35); }
.category-card-media { min-height: 210px; display: flex; align-items: center; justify-content: center; background: #f7fafc; padding: 24px; }
.category-card-media img { width: 100%; height: 180px; object-fit: contain; }
.category-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.category-card-title { color: var(--daikin-dark); font-size: 18px; font-weight: 800; line-height: 1.25; }
.category-card-text { color: #66717d; font-size: 14px; line-height: 1.65; flex: 1; }
.category-card-meta { color: var(--daikin-blue); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.home-category-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.home-category-tile { min-height: 280px; border-radius: 8px; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; text-decoration: none; color: #fff; overflow: hidden; transition: 0.3s ease; }
.home-category-tile:hover { color: #fff; transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0,45,90,0.18); }
.home-category-tile span { font-size: 28px; font-weight: 800; line-height: 1.1; }
.home-category-tile small { font-weight: 800; opacity: 0.9; margin-top: 8px; text-transform: uppercase; }
.product-shell { padding: 20px 12px 90px; }
.product-layout { display: flex; align-items: flex-start; gap: 28px; }
.filter-sidebar { flex: 0 0 22%; max-width: 280px; position: sticky; top: 104px; background: #fff; border: 1px solid #e8eef4; border-radius: 8px; padding: 22px; box-shadow: 0 12px 32px rgba(0,0,0,0.05); }
.filter-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--daikin-dark); font-weight: 800; font-size: 18px; margin-bottom: 18px; }
.filter-reset { border: 0; background: transparent; color: var(--daikin-blue); font-size: 12px; font-weight: 800; padding: 0; }
.filter-group { border-top: 1px solid #edf2f7; padding-top: 16px; margin-top: 16px; }
.filter-group:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.filter-label, .filter-title { color: var(--daikin-dark); font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.filter-title { display: flex; align-items: center; gap: 8px; }
.filter-title i { color: var(--daikin-blue); width: 16px; }
.filter-check { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; font-size: 13.5px; color: #596574; cursor: pointer; }
.filter-check input { accent-color: var(--daikin-blue); }
.product-results { flex: 1; min-width: 0; }
.product-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; background: var(--bg-light); border-radius: 8px; padding: 14px 18px; margin-bottom: 22px; color: var(--daikin-dark); }
.product-sort { width: min(240px, 100%); }
.product-page-list .row { row-gap: 0; }
.no-results { background: #fff; border: 1px dashed #b8c5d3; border-radius: 8px; padding: 28px; text-align: center; color: #66717d; font-weight: 700; }
.solution-panel { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px; background: var(--bg-light); border-radius: 8px; margin-bottom: 28px; }
.solution-panel h2 { color: var(--daikin-dark); font-weight: 800; font-size: 26px; margin-bottom: 12px; }
.solution-panel p { margin: 0; line-height: 1.75; color: #5d6874; }
.request-form { background: #fff; border: 1px solid #e8eef4; border-radius: 8px; padding: 28px; box-shadow: 0 12px 32px rgba(0,0,0,0.05); }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-box { background: #fff; border: 1px solid #e8eef4; border-radius: 8px; padding: 24px; min-height: 100%; }
.info-box i { color: var(--daikin-blue); font-size: 28px; margin-bottom: 16px; }
.info-box h3 { color: var(--daikin-dark); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.info-box p { color: #66717d; line-height: 1.65; margin: 0; }
/* --- KURUMSAL & MÜHENDİSLİK İÇERİK SAYFALARI --- */
.brand-strip { background: var(--daikin-dark); color: #fff; border-radius: 8px; padding: 28px; margin-bottom: 30px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.brand-stat { border-left: 3px solid var(--daikin-blue); padding-left: 18px; min-height: 86px; display: flex; flex-direction: column; justify-content: center; }
.brand-stat strong { font-size: 24px; font-weight: 800; line-height: 1.15; }
.brand-stat span { color: #cbd5e1; font-size: 13px; line-height: 1.5; margin-top: 6px; }
.anchor-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.anchor-pills a { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 16px; border-radius: 999px; background: var(--bg-light); color: var(--daikin-dark); text-decoration: none; font-weight: 800; font-size: 13px; transition: 0.25s ease; }
.anchor-pills a:hover { background: var(--daikin-blue); color: #fff; transform: translateY(-2px); }
.content-section { padding: 34px 0; border-top: 1px solid #e8eef4; }
.content-section:first-child { border-top: 0; padding-top: 0; }
.content-section.alt-band { background: var(--bg-light); margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding-left: calc(50vw - 50%); padding-right: calc(50vw - 50%); }
.split-feature { display: grid; grid-template-columns: minmax(0, 42%) minmax(0, 1fr); gap: 34px; align-items: center; }
.split-feature.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 42%); }
.split-feature.reverse .split-media { order: 2; }
.split-media { border-radius: 8px; overflow: hidden; background: #f7fafc; min-height: 260px; display: flex; align-items: center; justify-content: center; }
.split-media img { width: 100%; height: 100%; max-height: 360px; object-fit: contain; padding: 18px; }
.split-copy h2, .content-section h2 { color: var(--daikin-dark); font-size: 28px; font-weight: 800; margin-bottom: 14px; letter-spacing: 0; }
.split-copy p, .content-section p { color: #5d6874; line-height: 1.78; margin-bottom: 18px; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; padding: 0; margin: 18px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; color: #435063; line-height: 1.55; font-size: 14px; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--daikin-blue); position: absolute; left: 0; top: 1px; }
.solution-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 22px; }
.solution-card { background: #fff; border: 1px solid #e8eef4; border-radius: 8px; padding: 24px; box-shadow: 0 10px 28px rgba(0,0,0,0.05); min-height: 100%; }
.solution-card img { width: 100%; height: 170px; object-fit: contain; margin-bottom: 18px; background: #f7fafc; border-radius: 6px; padding: 12px; }
.solution-card i { color: var(--daikin-blue); font-size: 30px; margin-bottom: 16px; }
.solution-card h3 { color: var(--daikin-dark); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.solution-card p { color: #66717d; font-size: 14px; line-height: 1.65; margin: 0; }
.solution-card .btn-daikin,
.solution-card .btn-outline-daikin { margin-top: 16px; }
.industrial-page .solution-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.industrial-page .solution-card { display: flex; flex-direction: column; }
.industrial-page .solution-card .btn-daikin,
.industrial-page .solution-card .btn-outline-daikin { align-self: flex-start; margin-top: auto; }
.section-kicker { color: var(--daikin-blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.btn-outline-daikin { display: inline-block; border: 1px solid var(--daikin-blue); color: var(--daikin-blue); background: #fff; padding: 10px 20px; border-radius: 6px; font-weight: 800; font-size: 12.5px; text-transform: uppercase; text-decoration: none; transition: 0.25s ease; }
.btn-outline-daikin:hover { background: #111827; border-color: #111827; color: #fff; box-shadow: 0 8px 18px rgba(17,24,39,0.18); transform: translateY(-2px); }
.vrv-page .page-visual { min-height: 390px; background-position: center; }
.vrv-quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 22px 0 34px; }
.vrv-quick-item { background: #fff; border: 1px solid #e8eef4; border-radius: 8px; padding: 18px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.vrv-quick-item strong { display: block; color: var(--daikin-dark); font-size: 18px; font-weight: 800; line-height: 1.25; }
.vrv-quick-item span { display: block; color: #66717d; font-size: 13px; line-height: 1.55; margin-top: 8px; }
.vrv-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 22px; }
.vrv-detail-card { background: #fff; border: 1px solid #e8eef4; border-radius: 8px; padding: 24px; min-height: 100%; box-shadow: 0 10px 28px rgba(0,0,0,0.04); }
.vrv-detail-card h3 { color: var(--daikin-dark); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.vrv-detail-card p { color: #66717d; font-size: 14px; line-height: 1.7; margin: 0; }
.vrv-product-row { display: grid; grid-template-columns: minmax(0, 36%) minmax(0, 1fr); gap: 28px; align-items: center; background: #fff; border: 1px solid #e8eef4; border-radius: 8px; padding: 26px; box-shadow: 0 12px 32px rgba(0,0,0,0.05); margin-bottom: 22px; }
.vrv-product-row img { width: 100%; max-height: 310px; object-fit: contain; background: #f7fafc; border-radius: 6px; padding: 18px; }
.vrv-product-row h3 { color: var(--daikin-dark); font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.vrv-product-row p { color: #66717d; line-height: 1.7; margin-bottom: 16px; }
.vrv-product-row .check-list { margin-top: 0; }
.vrv-cta-band { background: linear-gradient(135deg, var(--daikin-dark), #064d83); color: #fff; border-radius: 8px; padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; }
.vrv-cta-band h2 { color: #fff; font-size: 26px; margin-bottom: 10px; }
.vrv-cta-band p { color: #d6e3ee; margin: 0; line-height: 1.7; }
.vrv-cta-band .btn-daikin { white-space: nowrap; background: #fff; color: var(--daikin-dark); }
.vrv-cta-band .btn-daikin:hover { background: #111827; color: #fff; }
.term-icons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.term-icons span { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #dfe8f1; border-radius: 999px; padding: 9px 13px; color: var(--daikin-dark); font-weight: 800; font-size: 12px; }
.term-icons i { color: var(--daikin-blue); }
.compat-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 8px; background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,0.05); }
.compat-table th, .compat-table td { border: 1px solid #e1e8ef; padding: 14px; text-align: center; color: #435063; font-size: 14px; }
.compat-table th { background: var(--daikin-dark); color: #fff; font-weight: 800; }
.compat-table td:first-child { text-align: left; font-weight: 800; color: var(--daikin-dark); background: #f7fafc; }
.compat-dot { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 999px; background: var(--daikin-blue); color: #fff; font-size: 12px; font-weight: 800; }
.source-note { color: #7a8795; font-size: 12px; margin-top: 20px; }

/* --- YENİ KLİMA MENÜSÜ --- */
@media (min-width: 992px) {
    .nav-link { padding: 10px 8px !important; font-size: 12px; }
    .klima-mega-menu { width: min(860px, calc(100vw - 32px)); min-width: min(760px, calc(100vw - 32px)); }
    .klima-menu-panel .mega-menu-img { width: 250px; }
}
.nav-category-grid { display: grid; gap: 10px; }
.nav-category { border: 1px solid #e4edf4; border-radius: 8px; background: #fff; overflow: hidden; }
.nav-category .nav-category-head { display: flex; align-items: center; gap: 12px; margin: 0; padding: 10px 12px; background: #f7fafc; white-space: normal; }
.nav-category .nav-category-head:hover { padding-left: 12px; background: #eef7fb; }
.nav-category-thumb { width: 58px; height: 46px; flex: 0 0 58px; border-radius: 6px; background: #fff; overflow: hidden; border: 1px solid #e6eef4; display: flex; align-items: center; justify-content: center; }
.nav-category-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nav-category-head strong { display: block; color: var(--daikin-dark); font-size: 13px; line-height: 1.25; }
.nav-category-head small { display: block; color: #6b7887; font-size: 11.5px; line-height: 1.35; margin-top: 2px; font-weight: 600; }
.tab-img-contain { object-fit: contain; background: linear-gradient(135deg, #eef7fb, #ffffff); padding: 36px; }

/* --- KATALOG DERGİ KARTLARI --- */
.catalog-page { padding-top: 10px; }
.catalog-book-link { display: block; text-decoration: none; color: inherit; perspective: 1200px; height: 100%; }
.catalog-book { --accent-color: var(--daikin-blue); position: relative; display: block; min-height: 330px; transform-style: preserve-3d; transition: transform 0.35s ease, filter 0.35s ease; }
.catalog-book[style*="--accent-step:1"] { --accent-color: #0f766e; }
.catalog-book[style*="--accent-step:2"] { --accent-color: #7c3aed; }
.catalog-book[style*="--accent-step:3"] { --accent-color: #dc2626; }
.catalog-book[style*="--accent-step:4"] { --accent-color: #0f5e9c; }
.catalog-book[style*="--accent-step:5"] { --accent-color: #b45309; }
.catalog-book-link:hover .catalog-book { transform: rotateY(-13deg) rotateX(4deg) translateY(-8px); filter: drop-shadow(0 24px 30px rgba(0,45,90,0.16)); }
.catalog-cover { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; min-height: 330px; padding: 22px; border-radius: 7px; overflow: hidden; background: linear-gradient(145deg, #ffffff 0%, #edf6fb 48%, #dceaf2 100%); border: 1px solid #d7e5ef; box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.catalog-cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.12), transparent 14%, transparent 70%, rgba(255,255,255,0.42)); pointer-events: none; }
.catalog-cover::after { content: ""; position: absolute; top: 0; right: 0; width: 70px; height: 100%; background: linear-gradient(180deg, var(--accent-color), var(--daikin-dark)); opacity: 0.92; clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%); }
.catalog-spine { position: absolute; top: 12px; left: -10px; bottom: 12px; width: 28px; background: linear-gradient(180deg, #0b355e, #06203d); border-radius: 6px 0 0 6px; transform: rotateY(-42deg); transform-origin: right center; box-shadow: inset -5px 0 12px rgba(255,255,255,0.12); }
.catalog-label, .catalog-title, .catalog-action, .catalog-cover img { position: relative; z-index: 3; }
.catalog-label { align-self: flex-start; background: rgba(0,45,90,0.08); color: var(--daikin-dark); border: 1px solid rgba(0,161,224,0.18); border-radius: 999px; padding: 6px 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.catalog-title { display: block; color: var(--daikin-dark); font-size: 21px; font-weight: 800; line-height: 1.2; margin-top: 14px; min-height: 52px; padding-right: 34px; }
.catalog-cover img { width: 100%; height: 135px; object-fit: contain; margin: 12px 0; filter: drop-shadow(0 12px 14px rgba(0,0,0,0.12)); }
.catalog-action { display: inline-flex; align-items: center; gap: 8px; color: #fff; background: var(--daikin-dark); border-radius: 999px; padding: 9px 13px; font-size: 12px; font-weight: 800; width: fit-content; transition: background 0.25s ease; }
.catalog-book-link:hover .catalog-action { background: var(--accent-color); }

/* --- REFERANSLAR --- */
.reference-tabs { gap: 10px; margin-bottom: 28px; }
.reference-tabs .nav-link { border-radius: 999px; background: #eef4f8; color: var(--daikin-dark) !important; padding: 12px 20px !important; font-weight: 800; }
.reference-tabs .nav-link.active { background: var(--daikin-blue); color: #fff !important; box-shadow: 0 12px 24px rgba(0,161,224,0.22); }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.project-card { position: relative; display: block; width: 100%; min-height: 270px; border: 0; border-radius: 8px; overflow: hidden; padding: 0; text-align: left; background: #0b253d; box-shadow: 0 12px 30px rgba(0,0,0,0.08); cursor: pointer; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,45,90,0.12), rgba(0,28,55,0.88)); }
.project-card-overlay { position: absolute; inset: auto 0 0; z-index: 2; display: block; padding: 24px; color: #fff; }
.project-card-overlay strong { display: block; font-size: 20px; line-height: 1.25; font-weight: 800; margin: 9px 0 8px; }
.project-card-overlay small { display: block; color: rgba(255,255,255,0.82); line-height: 1.55; font-size: 13px; }
.project-status { display: inline-flex; background: rgba(0,161,224,0.92); border-radius: 999px; padding: 6px 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.project-card:hover img { transform: scale(1.08); }
.project-card:hover .project-status { background: #fff; color: var(--daikin-dark); }
.project-lightbox .modal-content { border: 0; border-radius: 8px; overflow: hidden; background: #071a2f; color: #fff; box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.project-lightbox-close { position: absolute; top: 14px; right: 14px; z-index: 5; }
.project-lightbox .carousel-item img { height: min(72vh, 680px); object-fit: cover; background: #092642; }
.project-lightbox-info { padding: 44px 36px; display: flex; flex-direction: column; justify-content: center; }
.project-lightbox-info h2 { font-size: 32px; font-weight: 800; color: #fff; margin: 12px 0 18px; line-height: 1.18; }
.project-lightbox-info p { color: #c7d6e4; line-height: 1.75; margin: 0; }
@media (max-width: 991px) {
    .page-visual { min-height: 260px; }
    .page-intro h1 { font-size: 30px; }
    .category-grid, .category-grid.compact, .home-category-row, .info-grid { grid-template-columns: 1fr 1fr; }
    .product-layout { flex-direction: column; }
    .filter-sidebar { width: 100%; max-width: none; position: static; flex: 0 0 auto; }
    .solution-panel { flex-direction: column; align-items: flex-start; }
    .brand-strip, .solution-grid, .vrv-quick-grid, .vrv-detail-grid { grid-template-columns: 1fr 1fr; }
    .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-book { min-height: 300px; }
    .catalog-cover { min-height: 300px; }
    .split-feature, .split-feature.reverse { grid-template-columns: 1fr; }
    .split-feature.reverse .split-media { order: 0; }
    .vrv-product-row { grid-template-columns: 1fr; }
    .vrv-cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
    .carousel-caption h2 { font-size: 2.1rem; }
    .carousel-caption p { font-size: 1.05rem; }
    .carousel-item { min-height: 460px; }
    .carousel-control-prev,
    .carousel-control-next { width: 58px; }
    .carousel-control-prev { left: 8px; }
    .carousel-control-next { right: 8px; }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        background-size: 14px 14px;
    }
    .features-section { margin-top: 30px; }
    .category-grid, .category-grid.compact, .home-category-row, .info-grid { grid-template-columns: 1fr; }
    .home-category-tile { min-height: 220px; }
    .product-toolbar { flex-direction: column; align-items: stretch; }
    .page-section, .product-shell { padding-left: 14px; padding-right: 14px; }
    .whatsapp-float { right: 18px; bottom: 18px; width: 58px; height: 58px; }
    .brand-strip, .solution-grid, .check-list, .vrv-quick-grid, .vrv-detail-grid { grid-template-columns: 1fr; }
    .vrv-page .page-visual { min-height: 250px; }
    .vrv-product-row, .vrv-cta-band { padding: 20px; }
    .compat-table { min-width: 640px; }
    .table-scroll { overflow-x: auto; padding-bottom: 10px; }
    .project-grid { grid-template-columns: 1fr; }
    .project-card { min-height: 250px; }
    .project-lightbox .carousel-item img { height: 360px; }
    .project-lightbox-info { padding: 28px; }
    .catalog-book, .catalog-cover { min-height: 280px; }
}

/* --- SON REVİZYON: MENÜ, ANA SAYFA, GALERİLER --- */
.hero-finance-slide { background-position: center; }
.hero-finance-slide::before {
    background: linear-gradient(90deg, rgba(0,45,90,0.16), rgba(255,255,255,0.02) 48%, rgba(255,255,255,0));
}
.hero-finance-slide .carousel-caption {
    left: auto;
    right: 9%;
    bottom: 11%;
    text-align: right;
}
.hero-finance-slide .carousel-caption h2,
.hero-finance-slide .carousel-caption p { display: none; }
.hero-finance-slide .carousel-caption .btn-daikin {
    box-shadow: 0 18px 34px rgba(0,45,90,0.22);
}

.nav-category-direct .nav-category-head { text-decoration: none; }
.nav-category-direct .nav-category-head::after { display: none; }
.klima-mega-menu .two-column-menu {
    min-width: 410px;
    max-width: min(460px, calc(100vw - 40px));
    column-gap: 10px;
}
.klima-mega-menu .dropdown-submenu.open > .two-column-menu {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.klima-mega-menu .two-column-menu .dropdown-item {
    min-height: 38px;
    display: flex;
    align-items: center;
    white-space: normal;
    line-height: 1.2;
}

.brand-strip {
    align-items: stretch;
    background: linear-gradient(135deg, #041b33 0%, #073a63 58%, #005f95 100%);
    box-shadow: 0 22px 54px rgba(0,45,90,0.16);
    padding-top: 24px;
    padding-bottom: 20px;
}
.brand-stat {
    position: relative;
    justify-content: flex-start;
    min-height: 74px;
    padding: 2px 12px 0 52px;
    border-left: 0;
}
.brand-stat::before {
    content: "\f133";
    position: absolute;
    left: 0;
    top: 2px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #7ddaff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 26px;
    box-shadow: none;
}
.brand-stat:nth-child(2)::before { content: "\f0ad"; }
.brand-stat:nth-child(3)::before { content: "\f3c5"; }
.brand-stat:nth-child(4)::before { content: "\f521"; }
.brand-stat strong {
    min-height: 0;
    display: flex;
    align-items: flex-start;
    font-size: 23px;
    margin-bottom: 0;
    color: #7ddaff;
}
.brand-stat span { margin-top: 2px; color: #fff; }

.main-tab-section { margin-top: 42px; }
.tab-content-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,45,90,0.16);
}
.main-tab-section .tab-pane {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #061d36;
}
.main-tab-section .tab-pane::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,28,55,0.1) 0%, rgba(0,28,55,0.28) 46%, rgba(0,28,55,0.78) 100%);
    z-index: 1;
}
.main-tab-section .tab-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
}
.main-tab-section .tab-img-contain {
    object-fit: cover;
    padding: 0;
    background: none;
}
.main-tab-section .tab-overlay-card {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: clamp(24px, 6vw, 78px);
    transform: translateY(-50%);
    width: min(430px, calc(100% - 48px));
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.58);
    border-radius: 8px;
    box-shadow: 0 30px 65px rgba(0,0,0,0.22);
    backdrop-filter: blur(10px);
}
.main-tab-section .tab-overlay-card .title { line-height: 1.12; }

.awards-section {
    margin-top: 28px;
    padding: 84px 0;
    overflow: hidden;
    background: radial-gradient(circle at 18% 10%, rgba(0,161,224,0.18), transparent 34%), linear-gradient(135deg, #041b33 0%, #082949 64%, #061522 100%);
}
.awards-section .section-heading h2,
.awards-section .section-heading p { color: #fff; }
.awards-section .page-eyebrow { color: #7ddaff; }
.award-marquee,
.home-reference-marquee {
    overflow: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 10px 0 18px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.award-track,
.home-reference-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    padding: 0 20px;
    animation: daikin-marquee 38s linear infinite;
}
.home-reference-track { animation-duration: 46s; }
.award-marquee:hover .award-track,
.home-reference-marquee:hover .home-reference-track,
.gallery-open .award-track,
.gallery-open .home-reference-track { animation-play-state: paused; }
@keyframes daikin-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.award-card {
    position: relative;
    width: 310px;
    min-height: 330px;
    border: 1px solid rgba(125,218,255,0.22);
    border-radius: 8px;
    padding: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
    color: #fff;
    text-align: left;
    box-shadow: 0 24px 58px rgba(0,0,0,0.24);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    overflow: hidden;
}
.award-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 28% 12%, rgba(255,255,255,0.22), transparent 32%);
    pointer-events: none;
}
.award-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125,218,255,0.72);
    background: linear-gradient(145deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
}
.award-image-card {
    width: 310px;
    min-height: 0;
    padding: 10px;
}
.award-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 176px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(3,20,38,0.38), rgba(0,161,224,0.12));
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.12);
}
.award-image-card .award-visual {
    height: auto;
    aspect-ratio: 3 / 2;
    margin-bottom: 0;
    background: #f5f8fb;
}
.award-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    filter: saturate(0.95) contrast(1.08);
}
.award-image-card .award-visual img {
    opacity: 1;
    filter: none;
    object-fit: cover;
}
.award-visual i {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: none;
    color: #fff;
    font-size: 58px;
    text-shadow: 0 18px 30px rgba(0,0,0,0.32);
    box-shadow: none;
}
.award-card strong,
.home-project-card strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
}
.award-card small {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,0.74);
    line-height: 1.45;
}

.service-bg {
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0,45,90,0.94), rgba(0,81,135,0.78)), url('../../images/places/project-office-lobby.jpg') center/cover no-repeat;
    border-radius: 8px;
    padding: 68px 54px;
    box-shadow: 0 32px 80px rgba(0,45,90,0.2);
}
.service-bg .title { max-width: 760px; letter-spacing: 0; line-height: 1.12; }
.service-bg .blue-list-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-bg .blue-list-wrap span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    padding: 10px 13px;
    color: #fff;
    font-weight: 800;
}
.service-bg .blue-list-wrap span::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #7ddaff;
}
.service-bg::after {
    content: none;
    position: absolute;
    right: 42px;
    bottom: 38px;
    color: rgba(255,255,255,0.18);
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: 0;
    pointer-events: none;
}
.service-proof-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 52px rgba(0,0,0,0.18);
}
.service-proof-card div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 4px 12px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
}
.service-proof-card i {
    grid-row: span 2;
    color: #fff;
    font-size: 24px;
    align-self: center;
}
.service-proof-card strong {
    display: block;
    color: #fff;
    font-weight: 800;
}
.service-proof-card small {
    color: rgba(255,255,255,0.76);
    line-height: 1.5;
}

.multi-split-visual { background-position: center; }
.multi-split-page .solution-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.multi-flow {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}
.multi-flow-copy {
    background: var(--daikin-dark);
    color: #fff;
    border-radius: 8px;
    padding: 32px;
}
.multi-flow-copy h2 { color: #fff; font-weight: 800; margin-bottom: 14px; }
.multi-flow-copy p { color: #d6e3ee; line-height: 1.75; }
.multi-flow-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.multi-flow-steps div {
    background: #fff;
    border: 1px solid #e8eef4;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(0,45,90,0.06);
}
.multi-flow-steps span {
    color: var(--daikin-blue);
    font-size: 13px;
    font-weight: 800;
}
.multi-flow-steps strong {
    display: block;
    color: var(--daikin-dark);
    font-size: 20px;
    font-weight: 800;
    margin: 8px 0;
}
.multi-flow-steps small {
    display: block;
    color: #66717d;
    line-height: 1.6;
}
.multi-split-device img { object-fit: cover; padding: 0; }
.multi-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, var(--daikin-dark), #056a9c);
    color: #fff;
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 22px 54px rgba(0,45,90,0.16);
}
.multi-cta h2 { color: #fff; font-weight: 800; margin-bottom: 10px; }
.multi-cta p { color: #d6e3ee; line-height: 1.7; margin: 0; }
.multi-cta .btn-daikin { background: #fff; color: var(--daikin-dark); white-space: nowrap; }
.multi-cta .btn-daikin:hover { background: #111827; color: #fff; }

.home-reference-section {
    padding: 76px 0 64px;
    background: #f5f9fc;
    overflow: hidden;
}
.home-reference-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}
.home-reference-head h2 {
    color: var(--daikin-dark);
    font-weight: 800;
    margin: 0;
}
.home-project-card {
    width: 286px;
    border: 1px solid #dfe8f1;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    text-align: left;
    box-shadow: 0 16px 42px rgba(0,45,90,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.home-project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 56px rgba(0,45,90,0.14);
}
.home-project-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.home-project-card span {
    display: block;
    padding: 18px;
}
.home-project-card small {
    display: block;
    margin-top: 7px;
    color: #657385;
    line-height: 1.45;
}

.catalog-grid.row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    margin-left: 0;
    margin-right: 0;
}
.catalog-grid.row > [class*="col-"] {
    width: auto;
    max-width: none;
    flex: none;
    padding-left: 0;
    padding-right: 0;
}
.catalog-book { min-height: 410px; }
.catalog-cover {
    min-height: 410px;
    aspect-ratio: 0.72 / 1;
    padding: 20px 18px;
}
.catalog-cover::after { width: 56px; }
.catalog-title {
    font-size: 18px;
    min-height: 70px;
    padding-right: 28px;
}
.catalog-cover img {
    height: 108px;
    margin: 8px 0 12px;
    padding: 4px;
    background: transparent;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 12px 12px rgba(0,0,0,0.12));
}
.catalog-action {
    border-radius: 8px;
    padding: 9px 11px;
}

.project-card {
    min-height: auto;
    border: 1px solid #dfe8f1;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 42px rgba(0,45,90,0.08);
    color: var(--daikin-dark);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.project-card::after { display: none; }
.project-card img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #eaf2f8;
}
.project-card-overlay {
    position: relative;
    inset: auto;
    padding: 18px 18px 20px;
    color: var(--daikin-dark);
    background: #fff;
}
.project-card-overlay strong {
    color: var(--daikin-dark);
    margin: 10px 0 8px;
    font-size: 19px;
}
.project-card-overlay small {
    color: #66717d;
    min-height: 62px;
}
.project-status {
    background: rgba(0,161,224,0.1);
    color: var(--daikin-blue);
}
.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,161,224,0.36);
    box-shadow: 0 28px 62px rgba(0,45,90,0.14);
}
.project-card:hover img { transform: none; }
.project-card:hover .project-status {
    background: var(--daikin-blue);
    color: #fff;
}

.site-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(2, 14, 28, 0.88);
    backdrop-filter: blur(12px);
}
.site-gallery-lightbox.is-open { display: flex; }
.site-gallery-panel {
    position: relative;
    width: min(1180px, 100%);
    max-height: calc(100vh - 56px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    background: #061d36;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0,0,0,0.46);
}
.site-gallery-stage {
    min-height: 520px;
    background: #031426;
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-gallery-stage img {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 56px);
    object-fit: contain;
    background: #031426;
}
.site-gallery-info {
    padding: 34px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.site-gallery-kicker {
    color: #7ddaff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.site-gallery-title {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}
.site-gallery-desc {
    color: #c7d6e4;
    line-height: 1.72;
    margin-bottom: 24px;
}
.site-gallery-count {
    color: #91a7ba;
    font-weight: 800;
    font-size: 12px;
}
.site-gallery-close,
.site-gallery-arrow {
    position: absolute;
    z-index: 2;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,0.12);
    transition: background 0.22s ease, transform 0.22s ease;
}
.site-gallery-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
}
.site-gallery-arrow {
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
}
.site-gallery-prev { left: 18px; }
.site-gallery-next { right: 378px; }
.site-gallery-close:hover,
.site-gallery-arrow:hover {
    background: var(--daikin-blue);
}
.site-gallery-arrow:hover { transform: translateY(-50%) scale(1.06); }
body.gallery-open { overflow: hidden; }
.site-gallery-lightbox.is-image-only .site-gallery-panel {
    width: min(1180px, 100%);
    grid-template-columns: 1fr;
    background: #031426;
}
.site-gallery-lightbox.is-image-only .site-gallery-stage {
    min-height: min(76vh, 760px);
}
.site-gallery-lightbox.is-image-only .site-gallery-info {
    display: none;
}
.site-gallery-lightbox.is-image-only .site-gallery-next {
    right: 18px;
}

@media (max-width: 1199px) {
    .catalog-grid.row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
    .klima-mega-menu .two-column-menu { min-width: 100%; max-width: 100%; }
    .brand-stat { padding-left: 52px; }
    .main-tab-section .tab-pane { min-height: 500px; }
    .main-tab-section .tab-pane::after {
        background: linear-gradient(180deg, rgba(0,28,55,0.1), rgba(0,28,55,0.78));
    }
    .main-tab-section .tab-overlay-card {
        left: 22px;
        right: 22px;
        bottom: 22px;
        top: auto;
        transform: none;
        width: auto;
    }
    .catalog-grid.row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .site-gallery-panel { grid-template-columns: 1fr; overflow-y: auto; }
    .site-gallery-stage { min-height: 360px; }
    .site-gallery-info { padding: 26px; }
    .site-gallery-next { right: 18px; }
    .multi-split-page .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .multi-flow { grid-template-columns: 1fr; }
    .service-bg { padding: 46px 24px; }
}
@media (max-width: 767px) {
    .catalog-grid.row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-reference-head { align-items: flex-start; flex-direction: column; }
    .award-card, .home-project-card { width: 250px; }
    .award-image-card { width: 250px; }
    .brand-stat strong { min-height: auto; }
}
@media (max-width: 575px) {
    .klima-mega-menu .dropdown-submenu.open > .two-column-menu { grid-template-columns: 1fr; }
    .brand-strip { grid-template-columns: 1fr; }
    .brand-stat { min-height: 98px; }
    .main-tab-section .tab-pane { min-height: 560px; }
    .awards-section { padding: 58px 0; }
    .catalog-grid.row { grid-template-columns: 1fr; }
    .site-gallery-lightbox { padding: 14px; }
    .site-gallery-stage { min-height: 280px; }
    .site-gallery-title { font-size: 24px; }
    .multi-split-page .solution-grid, .multi-flow-steps { grid-template-columns: 1fr; }
    .multi-cta { flex-direction: column; align-items: flex-start; }
}

/* Şirket istatistik şeridi dışındaki teknik bilgi şeritleri ikon almamalı. */
.brand-strip:not(.company-brand-strip) .brand-stat {
    border-left: 3px solid var(--daikin-blue);
    padding-left: 18px;
    min-height: 86px;
    justify-content: center;
}
.brand-strip:not(.company-brand-strip) .brand-stat::before { display: none; }
.company-brand-strip .brand-stat {
    border-left: 0;
    padding-left: 52px;
    min-height: 74px;
    justify-content: flex-start;
}
.company-brand-strip { margin-bottom: 0; }
.company-brand-strip .brand-stat::before { display: inline-flex; }
.company-brand-strip .brand-stat strong { min-height: 0; margin-bottom: 0; color: #7ddaff; }
.company-brand-strip .brand-stat span { margin-top: 2px; color: #fff; }

/* Footer ve ortak iletişim hizaları */
.footer-contact li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: start;
    column-gap: 12px;
}
.footer-contact i {
    width: 26px;
    margin: 2px 0 0;
    text-align: center;
}
.footer-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0,161,224,0.75);
    background: transparent;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s ease;
}
.footer-call-button i {
    color: var(--daikin-blue);
    font-size: 17px;
}
.footer-call-button:hover {
    background: var(--daikin-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,161,224,0.18);
}
.footer-call-button:hover i { color: #fff; }

@media (max-width: 1199px) and (min-width: 992px) {
    .navbar .container { max-width: 100%; padding-left: 18px; padding-right: 18px; }
    .nav-link { font-size: 11.4px !important; padding-left: 6px !important; padding-right: 6px !important; }
    .navbar-brand img { height: 42px; }
}
@media (max-width: 991px) {
    .top-bar { display: none !important; }
    .footer .row { row-gap: 10px; }
}
@media (max-width: 575px) {
    .company-brand-strip .brand-stat {
        min-height: 68px;
        padding-left: 46px;
    }
    .company-brand-strip .brand-stat::before {
        width: 30px;
        height: 30px;
        font-size: 23px;
    }
    .company-brand-strip .brand-stat strong { font-size: 21px; }
    .footer-call-button { width: 100%; }
}

/* Reference project cards are static showcase tiles (no lightbox) */
.project-card, .home-project-card { cursor: default; }
.project-card.is-logo img, .home-project-card.is-logo img { object-fit: contain; background: #fff; padding: 26px; }
