/* ==================================================
   Teryaki Oto Kurtarma - Marka Uyarlaması
   Tema varsayılanı altın sarısıydı (#F5B754);
   brief'teki kırmızı-lacivert paletine çevriliyor.
   Kırmızı (Primary) #DC2626
   Siyah / Koyu Gri    #0F172A
   Açık Arka Plan      #F8FAFC
   Koyu Arka Plan      #1E293B
   ================================================== */

:root {
    --primary-color: #0F172A;
    --secondary-color: #FFFFFF;
    --bg-color: #F8FAFC;
    --text-color: #475569;
    --accent-color: #DC2626;
    --accent-dark: #B91C1C;
    --dark-bg-color: #1E293B;
    --white-color: #FFFFFF;
    --divider-color: #0F172A1A;
    --dark-divider-color: #FFFFFF1A;
}

/* Kırmızı zemin üzerinde siyah yazı okunmuyor, beyaza çevriliyor */
.btn-default {
    color: var(--white-color);
}

.btn-default.btn-white {
    color: var(--primary-color);
}

.btn-default.btn-white:hover,
.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

/* ==================================================
   LOGO
   Header ve footer koyu zemin üzerinde; beyaz yazılı
   logo kullanılıyor. Orijinal dosya çok geniş olduğu
   için header'da yükseklik ve genişlik tavanı var.
   ================================================== */

.main-header .navbar-brand {
    flex: 0 0 auto;
    max-width: 270px;
}

.main-header .navbar-brand img {
    display: block;
    max-height: 62px;
    max-width: 100%;
    width: auto;
    height: auto;
}

.footer-logo img {
    max-height: 66px;
    max-width: 230px;
    width: auto;
    height: auto;
}

.preloader .loading {
    display: none !important;
}

.preloader .loading-container,
.preloader .loading {
    width: auto;
    height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    animation: none;
}

.preloader .loading-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader #loading-icon {
    position: static;
    top: auto;
    left: auto;
    max-width: none;
    transform: none;
}

.preloader #loading-icon img {
    display: block;
    max-width: 240px;
    width: min(72vw, 240px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 18px rgba(220, 38, 38, 0.35));
    animation: teryaki-logo-pulse 1.7s ease-in-out infinite;
}

.preloader-panel {
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--primary-color);
    z-index: 1;
}

.preloader-panel-top {
    top: 0;
}

.preloader-panel-bottom {
    bottom: 0;
}

@keyframes teryaki-logo-pulse {
    0%, 100% { transform: scale(1); opacity: 0.88; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes teryaki-logo-out {
    0% { transform: scale(1); opacity: 1; filter: brightness(1); }
    40% { transform: scale(1.18); opacity: 1; filter: brightness(1.25); }
    100% { transform: scale(0.6); opacity: 0; filter: brightness(1.4); }
}

.preloader.is-exiting #loading-icon img {
    animation: teryaki-logo-out 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader.is-exiting .loading-container {
    transition: opacity 0.2s ease 0.28s;
    opacity: 0;
}

.preloader.is-exiting .preloader-panel-top {
    transform: translateY(-105%);
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1) 0.32s;
}

.preloader.is-exiting .preloader-panel-bottom {
    transform: translateY(105%);
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1) 0.32s;
}

.preloader.is-exiting {
    pointer-events: none;
    background: transparent;
}

@media (max-width: 1199px) {
    .main-header .navbar-brand {
        max-width: 168px;
    }

    .main-header .navbar-brand img {
        max-height: 44px;
        max-width: 168px;
    }

    .main-menu ul li {
        margin: 0 4px;
    }

    .main-menu ul li a {
        font-size: 14px;
        padding: 12px 6px !important;
    }
}

@media (max-width: 991px) {
    .main-header .navbar-brand {
        max-width: 156px;
    }

    .main-header .navbar-brand img {
        max-height: 40px;
        max-width: 156px;
    }
}

/* ==================================================
   KOYU BÖLÜMLER
   ================================================== */

.dark-section {
    background-color: var(--primary-color);
}

.intro-video-box.dark-section,
.cta-box.dark-section {
    background-color: var(--dark-bg-color);
}

/* ==================================================
   ACİL ÇAĞRI BUTONU
   ================================================== */

.header-btn .btn-default {
    white-space: nowrap;
}

/* ==================================================
   HERO - sola yaslı yazı (brief)
   ================================================== */

.hero-content {
    max-width: 760px;
    margin: 0;
    text-align: left !important;
}

.hero-content .section-title,
.hero-content .section-title h1,
.hero-content .section-title p,
.hero-content .section-sub-title {
    text-align: left !important;
}

.hero-content .section-title p {
    max-width: 620px;
    margin-left: 0;
    margin-right: 0;
}

.hero-content-btn {
    justify-content: flex-start;
}

.hero.hero-slider .container {
    z-index: 3;
}

.hero-pagination {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.45;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

.hero-button-prev,
.hero-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-button-prev:hover,
.hero-button-next:hover {
    background: var(--accent-color);
}

.hero-button-prev { left: 24px; }
.hero-button-next { right: 24px; }

@media (max-width: 767px) {
    .hero.hero-slider {
        padding: 180px 0 110px;
    }

    .hero-button-prev,
    .hero-button-next {
        width: 40px;
        height: 40px;
    }

    .hero-button-prev { left: 10px; }
    .hero-button-next { right: 10px; }
}

/* ==================================================
   HİZMET KARTLARI — arka plan görseli + glassmorphism
   ================================================== */

.service-item.service-item-glass {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 440px;
    padding: 0;
    text-decoration: none;
    background: #0F172A;
}

.service-item.service-item-glass::before {
    display: none;
}

.service-item.service-item-glass > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.6s ease;
}

.service-item.service-item-glass::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.08) 45%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}

.service-item.service-item-glass:hover > img {
    transform: scale(1.1);
}

.service-item-glass-panel {
    position: relative;
    z-index: 1;
    margin: 18px;
    padding: 22px 22px 20px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    color: #fff;
}

.service-item-glass-panel h2 {
    font-size: 21px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.service-item-glass-panel p {
    margin: 10px 0 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
}

.service-item-glass-panel .readmore-btn {
    color: #fff;
}

.service-item-glass-panel .readmore-btn::before {
    background-image: url('../images/arrow-white.svg');
    filter: brightness(0) invert(1);
}

.service-item.service-item-glass:hover {
    transform: translateY(-6px);
}

.service-item.service-item-glass:hover .service-item-glass-panel {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(220, 38, 38, 0.55);
}

.hero.hero-video .hero-bg-video img,
.intro-body-bg-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rent-car-box-title h2 {
    line-height: 1.3em;
}

/* ==================================================
   IKONLAR
   Tema ikonları SVG dosyasıydı; sektöre uygun görsel
   üretilene kadar Font Awesome ikonları kullanılıyor.
   ================================================== */

.service-item .icon-box,
.why-choose-item .icon-box,
.about-us-body-item .icon-box,
.core-features-item .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(220, 38, 38, 0.1);
    transition: all 0.4s ease-in-out;
}

.service-item .icon-box i,
.why-choose-item .icon-box i,
.about-us-body-item .icon-box i,
.core-features-item .icon-box i {
    font-size: 26px;
    line-height: 1;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box,
.core-features-item:hover .icon-box {
    background: var(--accent-color);
}

.service-item:hover .icon-box i,
.core-features-item:hover .icon-box i {
    color: var(--white-color);
}

/* Telefon rozeti (koyu zemin üzerinde) */
.about-contact-box .icon-box i {
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.about-contact-box:hover .icon-box i {
    color: var(--white-color);
}

/* Açık zeminli hakkımızda bölümünde telefon rozeti gri kalmasın */
.about-us-footer .about-contact-box .icon-box {
    background: rgba(220, 38, 38, 0.1);
}

.about-us-footer .about-contact-box-content p {
    color: var(--text-color);
}

.about-us-footer .about-contact-box-content h3 a {
    color: var(--primary-color);
}

.about-us-image-box {
    min-height: 520px;
}

.about-us-float-image {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: 42%;
    max-width: 220px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    border: 4px solid #fff;
    z-index: 2;
}

.about-us-float-image figure,
.about-us-float-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 8px 0 0;
}

.about-mv-card {
    position: relative;
    padding: 22px 20px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.about-mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    /* background: var(--accent-color); */
}

.about-mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent-color);
    font-size: 18px;
}

.about-mv-card h3 {
    font-size: 18px;
    margin: 14px 0 8px;
}

.about-mv-card p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
}

.about-us-footer {
    margin-top: 28px;
    padding-top: 28px;
}

@media (max-width: 1199px) {
    .about-us-image-box {
        min-height: 0;
        margin-bottom: 36px;
    }

    .about-us-image figure img {
        aspect-ratio: 16 / 10;
        max-height: 440px;
    }
}

@media (max-width: 767px) {
    .about-us-image-box {
        min-height: 0;
        margin-bottom: 28px;
    }

    .about-mv {
        grid-template-columns: 1fr;
    }

    .about-us-float-image {
        width: 46%;
        height: auto;
    }

    .about-us-float-image img {
        height: 140px;
    }
}

/* Kırmızı butonlarda koyu yazı yerine beyaz */
.btn-default {
    color: #fff !important;
}

.btn-default.btn-white {
    color: var(--primary-color) !important;
}

.btn-default.btn-white:hover {
    color: #fff !important;
}

.btn-default.btn-highlighted:hover {
    color: var(--primary-color) !important;
}

/* Header menüsü sıkışmasın */
.main-header .navbar {
    padding: 17px 0;
}

/* ==================================================
   CAPTION — CSS capitalize yok (SplitText her harfi
   büyük yapıyor). Türkçe title-case JS ile uygulanır.
   ================================================== */

.section-title .section-sub-title,
.section-title h1,
.section-title h2,
.teryaki-gallery-caption,
.teryaki-video-meta strong {
    text-transform: none !important;
}

/* ==================================================
   HEADER SUBMENU — glassmorphism
   ================================================== */

.main-menu ul ul {
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 40px rgba(8, 12, 22, 0.28);
    overflow: hidden;
}

.main-menu ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.main-menu ul ul li a {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    margin: 2px 6px;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: #fff !important;
    background: rgba(220, 38, 38, 0.32);
    padding: 10px 20px 10px 24px !important;
}

header.main-header .header-sticky.active .main-menu ul ul {
    background: rgba(15, 23, 42, 0.42);
}

@media (max-width: 991px) {
    .main-menu ul ul {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: rgba(15, 23, 42, 0.96);
    }
}

/* ==================================================
   MOBİL MENÜ — glassmorphism + beyaz hamburger
   ================================================== */

.slicknav_btn {
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 8px 20px rgba(8, 12, 22, 0.2);
}

.slicknav_icon .slicknav_icon-bar {
    background-color: #fff !important;
    box-shadow: none !important;
}

.slicknav_menu {
    background: rgba(15, 23, 42, 0.28) !important;
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 40px rgba(8, 12, 22, 0.28);
    overflow: hidden;
    margin-top: 8px;
}

.slicknav_menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    color: rgba(255, 255, 255, 0.92) !important;
    border-radius: 10px !important;
    margin: 2px 8px !important;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background: rgba(220, 38, 38, 0.32) !important;
    color: #fff !important;
}

.slicknav_arrow:after {
    color: rgba(255, 255, 255, 0.85) !important;
}

.slicknav_open > a .slicknav_arrow:after {
    color: #fff !important;
}

.slicknav_nav ul {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin: 4px 8px 8px !important;
    padding: 4px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slicknav_menu ul ul li a {
    padding: 8px 16px 8px 28px !important;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82) !important;
}

/* ==================================================
   HERO SLIDER — slayt bazlı içerik + otomatik kayma
   ================================================== */

.hero.hero-slider {
    padding: 0;
    min-height: 0;
}

.hero.hero-slider::before {
    display: none;
}

.hero.hero-slider .hero-swiper {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 800px;
}

.hero.hero-slider .swiper-wrapper,
.hero.hero-slider .swiper-slide {
    min-height: 928px;
    height: auto;
}

.hero.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    padding: 220px 0 150px;
}

.hero.hero-slider .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 6%, rgba(0, 0, 0, 0.38) 50%, rgba(0, 0, 0, 0.86) 94%);
    pointer-events: none;
}

.hero.hero-slider .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero.hero-slider .swiper-slide .container {
    position: relative;
    z-index: 3;
}

.hero-autoplay-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.hero-autoplay-bar span {
    display: block;
    height: 100%;
    width: 100%;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left center;
}

@media (max-width: 767px) {
    .hero.hero-slider .hero-swiper,
    .hero.hero-slider .swiper-wrapper,
    .hero.hero-slider .swiper-slide {
        min-height: 640px;
    }

    .hero.hero-slider .swiper-slide {
        padding: 170px 0 110px;
    }
}

/* ==================================================
   CTA REFERANS SLIDER
   ================================================== */

.cta-box {
    padding-bottom: 48px;
    background-image: url('../images/hero-slide-1.jpg');
}

.cta-referanslar {
    position: relative;
    z-index: 2;
    margin-top: 56px;
    padding: 28px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-referans-slider {
    overflow: hidden;
}

.cta-referans-slider .swiper-wrapper {
    transition-timing-function: linear;
    align-items: center;
}

.cta-referans-slider .swiper-slide {
    width: auto;
}

.cta-ref-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 36px;
}

.cta-ref-logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    opacity: 0.88;
}

/* ==================================================
   GÖRSEL + VİDEO GALERİ
   ================================================== */

.teryaki-gallery {
    padding: 110px 0 40px;
}

.teryaki-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 16px;
}

.teryaki-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: #0F172A;
}

.teryaki-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.teryaki-gallery-item:nth-child(6) {
    grid-column: span 2;
}

.teryaki-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.teryaki-gallery-item:hover img {
    transform: scale(1.08);
}

.teryaki-gallery-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.teryaki-videos {
    padding: 40px 0 110px;
}

.teryaki-video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    min-height: 280px;
    margin-bottom: 24px;
    background: #0F172A;
}

.teryaki-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    transition: transform 0.6s ease;
}

.teryaki-video-card:hover img {
    transform: scale(1.08);
}

.teryaki-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(220, 38, 38, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.teryaki-video-meta {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #fff;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.teryaki-video-meta strong {
    font-size: 15px;
}

.teryaki-video-meta em {
    font-style: normal;
    opacity: 0.8;
    font-size: 13px;
}

@media (max-width: 991px) {
    .teryaki-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .teryaki-gallery-item:nth-child(1),
    .teryaki-gallery-item:nth-child(6) {
        grid-column: span 2;
    }
}

@media (max-width: 575px) {
    .teryaki-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .teryaki-gallery-item:nth-child(1),
    .teryaki-gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Solda sürekli açık acil çekici FAB */
.teryaki-fab {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.teryaki-fab-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    color: #fff !important;
    transform: none !important;
}

.teryaki-fab-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.teryaki-fab-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.14);
}

.teryaki-fab-item.is-phone .teryaki-fab-icon,
.teryaki-fab-item.is-phone .teryaki-fab-label {
    background: #1E293B;
}

.teryaki-fab-item.is-whatsapp .teryaki-fab-icon,
.teryaki-fab-item.is-whatsapp .teryaki-fab-label {
    background: #25D366;
}

.teryaki-fab-item.is-cekici .teryaki-fab-icon,
.teryaki-fab-item.is-cekici .teryaki-fab-label {
    background: #DC2626;
}

.teryaki-fab-item.is-cekici .teryaki-fab-icon {
    width: 54px;
    height: 54px;
    font-size: 19px;
    animation:
        teryaki-fab-pulse 2s ease-in-out infinite,
        teryaki-fab-shake 2.8s ease-in-out infinite;
}

.teryaki-fab-item.is-cekici .teryaki-fab-label {
    font-size: 13px;
    padding: 0 12px;
    min-height: 32px;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
    animation: teryaki-fab-label-glow 2s ease-in-out infinite;
}

.teryaki-fab-item:hover .teryaki-fab-icon {
    transform: scale(1.08);
    animation-play-state: paused;
}

@keyframes teryaki-fab-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.55), 0 8px 18px rgba(15, 23, 42, 0.2);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(220, 38, 38, 0), 0 8px 18px rgba(15, 23, 42, 0.2);
    }
}

@keyframes teryaki-fab-shake {
    0%, 65%, 100% { transform: rotate(0deg) translateX(0); }
    70% { transform: rotate(-14deg) translateX(-2px); }
    75% { transform: rotate(14deg) translateX(2px); }
    80% { transform: rotate(-10deg) translateX(-1px); }
    85% { transform: rotate(10deg) translateX(1px); }
    90% { transform: rotate(-5deg); }
    95% { transform: rotate(5deg); }
}

@keyframes teryaki-fab-label-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.12); }
}

@media (max-width: 767px) {
    .teryaki-fab {
        left: 12px;
        bottom: 16px;
        gap: 8px;
    }

    .teryaki-fab-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .teryaki-fab-item.is-cekici .teryaki-fab-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .teryaki-fab-label {
        display: none;
    }
}

/* Footer: yan boşluksuz tam genişlik */
.main-footer.bg-section {
    width: 100% !important;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
}

/* Footer: sosyal ikonlar bülten altında + Aynifikir kredisi */
.footer-social-under-newsletter {
    margin-top: 18px;
}

.footer-social-under-newsletter ul {
    justify-content: flex-start;
}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transform: none !important;
}

.footer-credit img {
    height: 25px;
    width: auto;
    display: block;
    opacity: 0.92;
    transition: opacity 0.25s ease;
}

.footer-credit a:hover img {
    opacity: 1;
}

@media (max-width: 767px) {
    .footer-credit {
        justify-content: center;
        margin-top: 12px;
    }

    .footer-social-under-newsletter ul {
        justify-content: flex-start;
    }
}

/* ==================================================
   BREADCRUMB FIX (HTTrack bozulmuş divider)
   ================================================== */
.page-header-box .breadcrumb {
    --bs-breadcrumb-divider: '/';
    --bs-breadcrumb-divider-color: #fff;
    --bs-breadcrumb-item-active-color: #fff;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0;
    background: transparent;
}

.page-header-box .breadcrumb-item + .breadcrumb-item::before {
    float: none !important;
    content: '/' !important;
    color: #fff !important;
    padding-right: 0.55rem;
    padding-left: 0.15rem;
    opacity: 0.85;
    font-weight: 400;
    text-transform: none !important;
}

.page-header-box .breadcrumb-item a {
    color: #fff !important;
    text-decoration: none !important;
}

.page-header-box .breadcrumb-item a:hover {
    color: var(--accent-color) !important;
}

.page-header-box .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Inline gradient zaten var; eski :before çakışmasın */
.page-header.parallaxie::before {
    opacity: 0.35;
    background: #0F172A;
}

/* ==================================================
   GALERİ 4'LÜ EŞİT KART
   ================================================== */
.page-gallery-box .photo-gallery {
    height: 100%;
}

.page-gallery-box .col-lg-3 .photo-gallery img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
}

.teryaki-ref-grid .photo-gallery img {
    aspect-ratio: 1 / 0.72;
    object-fit: contain;
    background: #fff;
    padding: 16px;
}

.service-gallery-block {
    margin: 40px 0 50px;
}

.service-gallery-block h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.video-gallery-content {
    padding: 12px 4px 0;
}

.video-gallery-content h3 {
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
}

/* ==================================================
   BLOG EŞİT KARTLAR
   ================================================== */
.teryaki-equal-cards > [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.teryaki-card-equal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.teryaki-card-equal .post-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.teryaki-card-equal .post-item-btn {
    margin-top: auto;
}

.teryaki-card-equal .post-featured-image img {
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    width: 100%;
}

.teryaki-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 36px;
}

.teryaki-filter-chips a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--divider-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.teryaki-filter-chips a:hover,
.teryaki-filter-chips a.is-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.page-category-list ul li a.active {
    color: var(--accent-color);
}

.page-category-list .page-category-list-title {
    color: #fff !important;
}

.teryaki-post-category {
    margin: 0 0 1rem;
}

.teryaki-post-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: var(--accent-color);
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    line-height: 1.2;
    transition: background 0.25s ease, transform 0.25s ease;
}

.teryaki-post-category-pill:hover {
    background: #B91C1C;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Blog paylaş butonları */
.teryaki-post-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.teryaki-post-share-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.teryaki-post-share ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.teryaki-post-share ul li {
    margin: 0 !important;
}

.teryaki-post-share ul li a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff !important;
    background: var(--primary-color);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.teryaki-post-share ul li a.is-facebook {
    background: #1877F2;
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35);
}

.teryaki-post-share ul li a.is-x {
    background: #0F172A;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.3);
}

.teryaki-post-share ul li a.is-linkedin {
    background: #0A66C2;
    box-shadow: 0 6px 16px rgba(10, 102, 194, 0.35);
}

.teryaki-post-share ul li a.is-whatsapp {
    background: #25D366;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.teryaki-post-share ul li a:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: #fff !important;
}

@media (max-width: 991px) {
    .teryaki-post-share {
        justify-content: flex-start;
    }
}

.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.page-content-section {
    padding: 100px 0;
}

.teryaki-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.teryaki-content-card p:last-child {
    margin-bottom: 0;
}

/* ==================================================
   TEKLİF FORMU
   ================================================== */
.teryaki-quote-panel,
.teryaki-inline-quote {
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 36px 32px;
    margin-top: 10px;
}

.teryaki-quote-intro {
    margin: -8px 0 24px;
    color: var(--text-color);
}

.teryaki-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.teryaki-quote-form .form-control,
.teryaki-quote-form .form-select {
    min-height: 52px;
    border-radius: 12px;
    border-color: #e2e8f0;
    box-shadow: none;
}

.teryaki-quote-form textarea.form-control {
    min-height: 120px;
}

.teryaki-quote-form .form-control:focus,
.teryaki-quote-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.teryaki-alert {
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 14px;
}

.teryaki-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.teryaki-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.by-recaptcha-wrap {
    margin-right: 8px;
}

.by-recaptcha-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
}

@media (max-width: 767px) {
    .teryaki-quote-panel,
    .teryaki-inline-quote {
        padding: 24px 18px;
    }

    .page-gallery-box .col-lg-3 .photo-gallery img {
        aspect-ratio: 1 / 1;
    }
}

.teryaki-feature-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.teryaki-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.teryaki-feature-list li i {
    color: var(--accent-color);
    margin-top: 3px;
}

/* Contact page (eski askan sınıfları) */
.askan-page-section { padding: 100px 0; }
.askan-contact-stack { display: grid; gap: 16px; }
.askan-contact-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--divider-color);
}
.askan-contact-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent-color);
    flex-shrink: 0;
}
.askan-contact-card h3 { font-size: 18px; margin: 0 0 6px; }
.askan-contact-card p { margin: 0; }
.askan-contact-form,
.askan-quote-form,
.askan-quote-panel {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--divider-color);
}
.askan-label { display:block; margin-bottom:8px; font-weight:600; font-size:14px; color:var(--primary-color); }
.askan-map-block { margin-top: 60px; }
.askan-map-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--divider-color);
}
.askan-map-frame iframe { width: 100%; display: block; }
.askan-alert { border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; }
.askan-alert--success { background:#ecfdf5; color:#065f46; }
.askan-alert--error { background:#fef2f2; color:#991b1b; }

/* ==================================================
   KURUMSAL DETAY SAYFALARI
   ================================================== */
.page-about-single {
    padding: 100px 0;
}

/* Sol sütun metin kadar uzasın; sticky bunun içinde kayar (yalnızca desktop) */
.page-about-single .page-about-row {
    align-items: stretch !important;
}

.page-about-single .page-about-sticky-media {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 2;
    width: 100%;
}

.page-about-single .page-single-image {
    margin-bottom: 0;
}

.page-about-single .about-entry .section-title {
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .page-about-single .page-about-sticky-media {
        position: static;
        top: auto;
        margin-bottom: 30px;
    }
}

.teryaki-prose {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.75;
}

.teryaki-prose > *:first-child {
    margin-top: 0;
}

.teryaki-prose p {
    margin-bottom: 18px;
}

.teryaki-prose h3,
.teryaki-prose h4 {
    color: var(--primary-color);
    margin: 28px 0 12px;
    line-height: 1.3;
}

.teryaki-prose h3 { font-size: 24px; }
.teryaki-prose h4 { font-size: 20px; }

.teryaki-prose ul,
.teryaki-prose ol {
    margin: 0 0 20px;
    padding-left: 1.25rem;
}

.teryaki-prose li {
    margin-bottom: 8px;
}

.teryaki-prose strong {
    color: var(--primary-color);
}

/* ==================================================
   İLETİŞİM SAYFASI
   ================================================== */
.teryaki-contact-page {
    padding-bottom: 80px;
}

.teryaki-contact-aside {
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.teryaki-contact-info {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--divider-color);
}

.teryaki-contact-info:first-child {
    padding-top: 0;
}

.teryaki-contact-info:last-of-type {
    border-bottom: 0;
    padding-bottom: 8px;
}

.teryaki-contact-info-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-color);
    background: none;
    border-radius: 0;
    display: block;
    font-size: inherit;
}

.teryaki-contact-info-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.teryaki-contact-info h3 {
    font-size: 18px;
    margin: 0 0 6px;
    color: var(--primary-color);
}

.teryaki-contact-info p {
    margin: 0 0 4px;
    color: var(--text-color);
    line-height: 1.55;
}

.teryaki-contact-info a,
.teryaki-contact-aside a:not(.btn-default) {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.25s ease;
}

.teryaki-contact-info a:hover,
.teryaki-contact-aside a:not(.btn-default):hover {
    color: var(--accent-color) !important;
}

.teryaki-contact-aside-btn {
    width: 100%;
    text-align: center;
    margin-top: 18px;
}

.teryaki-contact-form-card {
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--divider-color);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.teryaki-contact-form-card .section-title {
    margin-bottom: 28px;
}

.teryaki-contact-form .form-control,
.teryaki-contact-form .form-select,
.teryaki-quote-form .form-control,
.teryaki-quote-form .form-select {
    min-height: 56px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 14px 18px;
    color: var(--primary-color);
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.teryaki-contact-form textarea.form-control,
.teryaki-quote-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.teryaki-contact-form .form-control:focus,
.teryaki-contact-form .form-select:focus,
.teryaki-quote-form .form-control:focus,
.teryaki-quote-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.teryaki-contact-form .form-control::placeholder {
    color: #94a3b8;
}

.teryaki-form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.teryaki-form-actions .by-recaptcha-wrap {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.teryaki-form-actions .btn-default {
    min-width: 220px;
}

.teryaki-map-block {
    margin-top: 70px;
}

.teryaki-map-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--divider-color);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.teryaki-map-frame iframe {
    width: 100%;
    display: block;
    min-height: 420px;
}

@media (max-width: 767px) {
    .teryaki-contact-form-card {
        padding: 26px 18px;
    }

    .teryaki-form-actions .btn-default {
        width: 100%;
        min-width: 0;
    }
}

/* ==================================================
   HİZMET DETAY SIDEBAR
   ================================================== */
.page-service-single .page-category-list-title {
    color: #fff !important;
}

.page-service-single .teryaki-sidebar-cta .sidebar-cta-review-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 26px;
}

.page-service-single .teryaki-sidebar-cta .sidebar-cta-review-counter {
    width: 100%;
    gap: 14px;
    justify-content: flex-start;
}

.page-service-single .teryaki-sidebar-cta .sidebar-cta-client-box {
    width: 100%;
}

.page-service-single .teryaki-sidebar-cta .sidebar-cta-client-content p {
    margin: 0;
    line-height: 1.55;
    max-width: 100%;
}

.page-service-single .teryaki-sidebar-cta .sidebar-cta-contact-btn a {
    color: #fff;
}
