/* ===================================
   HaneSystem Theme - Poppins Font
   Bootstrap 5.3.3
=================================== */

/* Font Family */
* {
    font-family: 'Poppins', sans-serif;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    cursor: none;
}

/* ===================================
   SCROLL PROGRESS BAR
=================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8102e, #ff4757);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ===================================
   CUSTOM CURSOR
=================================== */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #c8102e;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #c8102e;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.custom-cursor.cursor-hover {
    width: 60px;
    height: 60px;
    background: rgba(200, 16, 46, 0.1);
    border-color: #c8102e;
}

.cursor-dot.cursor-hover {
    transform: translate(-50%, -50%) scale(0);
}

@media (max-width: 991.98px) {

    .custom-cursor,
    .cursor-dot {
        display: none;
    }

    html {
        cursor: auto;
    }
}

/* ===================================
   SECTION ANIMATIONS
=================================== */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   FLOATING ANIMATION
=================================== */
.float-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===================================
   PAGE HERO BANNER (GLOBAL)
=================================== */
.page-hero {
    position: relative;
    margin-top: 70px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
    transform: scale(1.12);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(13, 13, 26, 0.92) 0%,
            rgba(26, 26, 46, 0.85) 40%,
            rgba(200, 16, 46, 0.3) 100%);
    z-index: 1;
}

/* Grid Lines Decoration */
.page-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
}

.grid-line-1 {
    width: 1px;
    height: 100%;
    left: 25%;
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-line-2 {
    width: 1px;
    height: 100%;
    left: 50%;
    animation: gridPulse 4s ease-in-out infinite 1s;
}

.grid-line-3 {
    width: 1px;
    height: 100%;
    left: 75%;
    animation: gridPulse 4s ease-in-out infinite 2s;
}

.grid-line-4 {
    width: 100%;
    height: 1px;
    top: 50%;
    animation: gridPulse 4s ease-in-out infinite 0.5s;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero-content {
    text-align: center;
}

/* Narrow Hero Variant */
.page-hero-narrow {
    height: 350px;
}

/* Breadcrumb */
.page-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0 0 20px 0;
    justify-content: center;
}

.page-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 400;
}

.page-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: #c8102e;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #c8102e;
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
    content: '/';
}

/* Hero Title */
.page-hero-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.page-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991.98px) {
    .page-hero {
        height: 380px;
    }

    .page-hero-title {
        font-size: 42px;
    }

    .page-hero-desc {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        height: 340px;
    }

    .page-hero-narrow {
        height: 280px;
    }

    .page-hero-title {
        font-size: 34px;
    }
}

@media (max-width: 575.98px) {
    .page-hero {
        height: 300px;
    }

    .page-hero-title {
        font-size: 28px;
        letter-spacing: 0;
    }

    .page-hero-desc {
        font-size: 14px;
    }
}

/* ===================================
   TILT EFFECT
=================================== */
.tilt-effect {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

/* ===================================
   MAGNETIC BUTTON
=================================== */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===================================
   TEXT SPLIT ANIMATION
=================================== */
.split-text .char-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-90deg);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.split-text.animate-chars .char-animate {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* ===================================
   GLOW EFFECTS
=================================== */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #c8102e, #ff4757, #c8102e);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.glow-effect:hover::before {
    opacity: 0.7;
}

@keyframes glowPulse {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ===================================
   SHIMMER EFFECT
=================================== */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.shimmer-effect:hover::after {
    left: 100%;
}

/* ===================================
   PULSE ANIMATION
=================================== */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(200, 16, 46, 0);
    }
}

/* ===================================
   HEADER SCROLL EFFECT
=================================== */
.header-main {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-main.header-scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* ===================================
   IMAGE REVEAL ANIMATION
=================================== */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #c8102e;
    z-index: 2;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.active::before {
    transform: scaleX(0);
}

.image-reveal img {
    transform: scale(1.3);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}

.image-reveal.active img {
    transform: scale(1);
}

/* ===================================
   LINE ANIMATION
=================================== */
.line-animate {
    position: relative;
}

.line-animate::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c8102e;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-animate:hover::after,
.line-animate.active::after {
    width: 100%;
}

/* ===================================
   BOUNCE IN ANIMATION
=================================== */
.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.active {
    opacity: 1;
    transform: scale(1);
}

/* ===================================
   STAGGER CHILDREN ANIMATION
=================================== */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.stagger-children.active>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   CARD HOVER 3D EFFECT
=================================== */
.card-3d {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ===================================
   RIPPLE EFFECT
=================================== */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ripple-effect:hover::before {
    width: 300%;
    height: 300%;
}

/* ===================================
   GRADIENT TEXT ANIMATION
=================================== */
.gradient-text-animate {
    background: linear-gradient(90deg, #c8102e, #ff4757, #c8102e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ===================================
   ROTATE ON SCROLL
=================================== */
.rotate-scroll {
    transition: transform 0.3s ease;
}

/* ===================================
   ZOOM ON SCROLL
=================================== */
.zoom-scroll {
    transition: transform 0.8s ease;
}

.zoom-scroll.active {
    transform: scale(1.05);
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
=================================== */

/* Base hidden state */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Up */
.reveal-up {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Fade In with Blur */
.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger Delays for Children */
.reveal-stagger>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* Custom Delays */
.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

.delay-5 {
    transition-delay: 0.5s !important;
}

/* Flip Reveal Animation */
.reveal-flip {
    opacity: 0;
    transform: perspective(1000px) rotateX(-15deg) translateY(40px);
    transform-origin: center bottom;
    transition: all 1s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-flip.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0);
}

/* Parallax Reveal Animation */
.reveal-parallax {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-parallax.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Rotate In Animation */
.reveal-rotate {
    opacity: 0;
    transform: rotate(-5deg) translateY(50px);
    transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
}

/* Slide Mask Animation */
.reveal-mask {
    position: relative;
    overflow: hidden;
}

.reveal-mask::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a1628;
    z-index: 10;
    transform: translateX(0);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-mask.active::before {
    transform: translateX(101%);
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* ===================================
   HEADER / NAVBAR
=================================== */
/* ── Top Bar ── */
.top-bar {
    background: #0f172a;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span,
.top-bar-right span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-left span i,
.top-bar-right span i {
    font-size: 12px;
    color: #e63946;
}

.top-bar-social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 8px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: color 0.2s;
}

.top-bar-social a:hover {
    color: #e63946;
}

/* ── Dil Seçici (Navbar) ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-link {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    padding: 4px 2px;
    transition: color .2s;
}

.lang-link:hover {
    color: #1e293b;
}

.lang-link.lang-active {
    color: #e63946;
    font-weight: 800;
}

.lang-divider {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 300;
    user-select: none;
}

/* Scroll sırasında top-bar gizle */
.top-bar.top-bar-hidden {
    transform: translateY(-100%);
}

/* ── Header ── */
.header-main {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.header-main.header-scrolled {
    top: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 0;
    min-height: 72px;
}

/* Logo */
.logo-img {
    height: 56px;
    width: auto;
    transition: height 0.3s ease;
}

.header-scrolled .logo-img {
    height: 46px;
}

/* 3-bölge: logo(sol) — menü(orta) — butonlar(sağ) */
.nav-row {
    display: flex;
    align-items: center;
}

.nav-left {
    flex: 0 0 auto;
}

@media (min-width: 1200px) {
    .navbar-collapse {
        display: flex !important;
        align-items: center;
        flex: 1;
    }
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Nav Links */
.navbar-nav {
    gap: 2px;
}

.navbar-nav .nav-link {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    padding: 26px 16px;
    transition: color 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e63946;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: #e63946;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* CTA buton (sağ taraf) */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 8px;
    background: #e63946;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta-btn:hover {
    background: #c8102e;
    color: #fff;
    transform: translateY(-1px);
}

.nav-cta-btn i {
    font-size: 13px;
}

/* Search link */
.search-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    background: #f1f5f9;
}

.search-link:hover {
    background: #e63946;
    color: #fff;
}

/* Hide default dropdown arrow */
.navbar-nav .dropdown-toggle::after {
    display: none;
}

/* ===================================
   DROPDOWN MENU
=================================== */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-top: 0;
    min-width: 280px;
    border-top: 3px solid #c8102e;
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-item {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 20px;
    position: relative;
    transition: all 0.2s ease;
    padding-left: 24px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.dropdown-item::after {
    content: '>';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: transparent;
    font-weight: 600;
    font-size: 12px;
    transition: color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #fafafa;
    color: #333333;
    padding-left: 32px;
}

.dropdown-item:hover::before {
    background-color: #00b5b5;
}

.dropdown-item:hover::after {
    color: #c8102e;
}

.dropdown-item:focus,
.dropdown-item:active {
    background-color: #fafafa;
    color: #333333;
}

/* Desktop hover dropdown */
@media (min-width: 1200px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        display: none;
    }

    .nav-item.dropdown:hover>.nav-link {
        color: #c8102e;
    }
}

/* ── Top bar & header responsive ── */
@media (max-width: 991.98px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-inner {
        justify-content: flex-end;
    }

    .top-bar {
        height: 34px;
    }

    .top-bar-inner {
        height: 34px;
    }

    .header-main {
        top: 34px;
    }

    .nav-cta-btn {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        display: none;
    }

    .header-main {
        top: 0;
    }
}

/* ===================================
   HERO SLIDER - FULL SCREEN CLEAN
=================================== */
.hero-slider {
    margin-top: 70px;
    height: calc(100vh - 70px);
    min-height: 600px;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 10, 30, 0.4) 0%, rgba(0, 10, 30, 0.6) 50%, rgba(0, 10, 30, 0.8) 100%);
}

/* Content */
.hero-slider .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.slide-content {
    max-width: 900px;
    padding: 40px 0;
    text-align: center;
}

/* Tag */
.slide-tag {
    display: inline-block;
    background: rgba(200, 16, 46, 0.9);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 10px 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInDown 0.8s ease forwards;
}

/* Title */
.slide-title {
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

/* Description */
.slide-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0 auto 40px auto;
    max-width: 600px;
}

/* Buttons */
.slide-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Slide Decorative Elements */
.slide-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-slide-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #c8102e;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 40px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #c8102e;
    letter-spacing: 0.5px;
}

.btn-slide-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.4);
}

.btn-slide-primary i {
    transition: transform 0.3s ease;
}

.btn-slide-primary:hover i {
    transform: translateX(5px);
}

.btn-slide-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 18px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-slide-secondary i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-slide-secondary:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-slide-secondary:hover i {
    transform: scale(1.15);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
}

.control-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .control-icon,
.carousel-control-next:hover .control-icon {
    background: #c8102e;
    border-color: #c8102e;
}

/* Carousel Indicators */
.hero-slider .carousel-indicators {
    bottom: 50px;
    margin-bottom: 0;
    gap: 12px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    opacity: 1;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-slider .carousel-indicators button.active {
    background: #c8102e;
    border-color: #c8102e;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.5);
}

/* Slide Animation */
.carousel-item .slide-content {
    opacity: 0;
    transform: translateY(30px);
}

.carousel-item.active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.3s;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1199.98px) {

    .header-main .navbar {
        position: relative;
    }

    /* ── Toggler butonu ── */
    .navbar-toggler {
        width: 42px;
        height: 42px;
        padding: 0;
        border: none;
        border-radius: 8px;
        background: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s;
    }

    .navbar-toggler:hover {
        background: #e2e8f0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }

    /* ── Collapse panel ── */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 3px solid #e63946;
        box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
        z-index: 1050;
        padding: 0 20px;
    }

    .navbar-collapse.collapse:not(.show) {
        display: none;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block;
    }

    /* ── Nav düzeni ── */
    .nav-center {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        padding: 12px 0 8px;
    }

    /* ── Nav linkleri ── */
    .navbar-nav .nav-link {
        display: block;
        padding: 13px 12px;
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
        border-bottom: 1px solid #f1f5f9;
        transition: color .2s, background .2s;
        border-radius: 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: #e63946;
        background: #fef2f2;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* ── Alt kısım: CTA buton ── */
    .nav-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 12px 0 20px;
        margin-top: 4px;
        border-top: 1px solid #e2e8f0;
    }

    .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
    }

    .search-link {
        display: none;
    }

    /* ── Dropdown alt menü ── */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        border-left: 3px solid #e63946;
        border-radius: 0;
        margin: 0 0 0 16px;
        padding: 4px 0;
        background: #f8fafc;
    }

    .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 10px 16px;
        color: #475569;
    }

    .dropdown-menu .dropdown-item:hover {
        color: #e63946;
        background: #fef2f2;
    }
}

@media (min-width: 1200px) {
    .navbar-nav .nav-link {
        padding: 24px 14px;
        font-size: 13px;
    }
}

@media (min-width: 1400px) {
    .navbar-nav .nav-link {
        padding: 24px 18px;
        font-size: 14px;
    }
}

/* Hero Responsive */
@media (max-width: 991.98px) {
    .slide-title {
        font-size: 48px;
    }

    .slide-desc {
        font-size: 16px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        min-height: 550px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-desc {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-slide-primary,
    .btn-slide-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-slider .carousel-indicators {
        bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .slide-content {
        padding: 30px 15px;
    }

    .slide-tag {
        font-size: 10px;
        padding: 8px 20px;
        letter-spacing: 2px;
    }

    .slide-title {
        font-size: 28px;
        letter-spacing: 0;
    }

    .slide-desc {
        font-size: 14px;
    }

    .slide-content::before {
        display: none;
    }
}

/* ===================================
   ABOUT SECTION
=================================== */
.about-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: rgba(200, 16, 46, 0.1);
    color: #c8102e;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Section Title */
.section-title {
    color: #1a1a2e;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 3px solid #c8102e;
    z-index: 1;
}

.about-experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #c8102e;
    color: #ffffff;
    padding: 24px 32px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 40px rgba(200, 16, 46, 0.3);
}

.experience-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* About Content */
.about-content {
    padding-left: 40px;
}

.about-lead {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* About Features */
.about-features {
    margin-bottom: 36px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.about-feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #c8102e;
    transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon {
    background: #c8102e;
    color: #ffffff;
    border-color: #c8102e;
}

.feature-content h4 {
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.feature-content p {
    color: #666666;
    font-size: 14px;
    margin: 0;
}

/* About Buttons */
.about-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c8102e;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 16px 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-primary:hover {
    background: #a00d25;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.3);
}

.btn-about-primary i {
    transition: transform 0.3s ease;
}

.btn-about-primary:hover i {
    transform: translateX(4px);
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-secondary i {
    font-size: 22px;
    color: #c8102e;
    transition: transform 0.3s ease;
}

.btn-about-secondary:hover {
    color: #c8102e;
}

.btn-about-secondary:hover i {
    transform: scale(1.1);
}

/* About Section Responsive */
@media (max-width: 991.98px) {
    .about-section {
        padding: 80px 0;
    }

    .about-image-wrapper {
        margin-bottom: 50px;
    }

    .about-content {
        padding-left: 0;
    }

    .section-title {
        font-size: 34px;
    }

    .about-experience-badge {
        right: 0;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .about-image-main img {
        height: 400px;
    }

    .about-lead {
        font-size: 16px;
    }

    .about-experience-badge {
        padding: 20px 24px;
    }

    .experience-number {
        font-size: 36px;
    }

    .about-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .about-image-main img {
        height: 320px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-image-accent {
        display: none;
    }

    .about-experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 16px 20px;
    }

    .experience-number {
        font-size: 32px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }
}

/* ===================================
   SERVICES SECTION - CORPORATE CLEAN
=================================== */
.services-section {
    padding: 100px 0 80px;
    background: #f8f9fa;
    position: relative;
}

/* Section Header */
.services-header {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.section-subtitle {
    display: inline-block;
    color: #c8102e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-title {
    color: #1a1a2e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.services-intro {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Services Corporate Grid */
.services-corporate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
}

/* Service Item */
.service-item {
    background: #ffffff;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.service-item-inner {
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.service-item:hover .service-item-inner {
    background: #ffffff;
}

/* Service Number */
.service-number {
    font-size: 72px;
    font-weight: 800;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.service-item:hover .service-number {
    color: rgba(200, 16, 46, 0.1);
}

/* Service Image Box */
.service-image-box {
    position: relative;
    height: 200px;
    margin-bottom: 28px;
    overflow: hidden;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover .service-image-box img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #c8102e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover .service-image-overlay {
    transform: scaleX(1);
}

/* Service Info */
.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.service-desc {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #c8102e;
}

.service-link:hover i {
    transform: translateX(6px);
}

/* Stats Bar */
.stats-bar {
    margin-top: 0;
    background: #1a1a2e;
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 55px 415px;
}

.stat-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.stat-num {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.stat-plus {
    color: #c8102e;
    font-size: 32px;
    font-weight: 700;
}

.stat-text {
    width: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.stat-separator {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* Services Responsive */
@media (max-width: 1199.98px) {
    .services-corporate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 36px;
    }

    .stat-num {
        font-size: 44px;
    }

    .stats-bar-inner {
        padding: 40px;
    }
}

@media (max-width: 991.98px) {
    .services-section {
        padding: 80px 0 60px;
    }

    .services-header .row {
        gap: 20px;
    }

    .services-title {
        font-size: 32px;
    }

    .service-item-inner {
        padding: 32px 24px;
    }

    .service-number {
        font-size: 56px;
    }

    .stats-bar-inner {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .stat-separator {
        display: none;
    }

    .stat-box {
        flex: 0 0 calc(50% - 20px);
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .services-corporate-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 28px;
    }

    .service-image-box {
        height: 180px;
    }

    .stats-bar {
        margin-top: 0;
    }

    .stat-num {
        font-size: 38px;
    }

    .stats-bar-inner {
        padding: 32px 24px;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 60px 0 40px;
    }

    .services-title {
        font-size: 24px;
    }

    .services-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .service-number {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .service-name {
        font-size: 18px;
    }

    .stat-box {
        flex: 0 0 100%;
    }
}

/* ===================================
   BLOG SECTION
=================================== */
.blog-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Blog Header */
.blog-header {
    margin-bottom: 60px;
}

.blog-header .section-title {
    margin-bottom: 20px;
}

.blog-intro {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c8102e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Card Content */
.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999999;
    font-size: 13px;
}

.blog-card-meta i {
    font-size: 14px;
    color: #c8102e;
}

.blog-card-title {
    margin: 0 0 14px 0;
}

.blog-card-title a {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: #c8102e;
}

.blog-card-excerpt {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #c8102e;
}

.blog-read-more:hover i {
    transform: translateX(6px);
}

/* View All Button */
.blog-view-all {
    text-align: center;
    margin-top: 50px;
}

.btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 36px;
    border: 2px solid #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-blog-all:hover {
    background: #c8102e;
    color: #ffffff;
    border-color: #c8102e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.3);
}

.btn-blog-all i {
    transition: transform 0.3s ease;
}

.btn-blog-all:hover i {
    transform: translateX(4px);
}

/* Blog Section Responsive */
@media (max-width: 991.98px) {
    .blog-section {
        padding: 80px 0;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-card-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-header {
        margin-bottom: 40px;
    }

    .blog-card-title a {
        font-size: 18px;
    }

    .blog-card-content {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-intro {
        font-size: 14px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-meta {
        gap: 12px;
    }

    .blog-card-meta span {
        font-size: 12px;
    }

    .blog-view-all {
        margin-top: 40px;
    }

    .btn-blog-all {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   FOOTER
=================================== */
.site-footer {
    background: #0d0d1a;
}

/* Footer CTA Section */
.footer-cta {
    background: linear-gradient(135deg, #c8102e 0%, #a00d24 100%);
    padding: 60px 0;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-cta-text h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.footer-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin: 0;
    max-width: 500px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #c8102e;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 36px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-cta-btn:hover {
    background: #1a1a2e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-cta-btn i {
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover i {
    transform: translateX(4px);
}

/* Footer Main */
.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 60px;
}

/* Footer Brand */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 140px;
    width: auto;
}

.footer-description {
    color: #8a8a9a;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a8a9a;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c8102e;
    border-color: #c8102e;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Navigation */
.footer-nav {
    padding-top: 4px;
}

.footer-heading {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 24px 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu a {
    color: #8a8a9a;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Footer Contact Info */
.footer-contact-info {
    padding-top: 4px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    display: block;
    color: #5a5a6a;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-value {
    display: block;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: #c8102e;
}

/* Footer Bottom */
.footer-bottom {
    padding: 28px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    color: #5a5a6a;
    font-size: 13px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal a {
    color: #5a5a6a;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal .separator {
    width: 4px;
    height: 4px;
    background: #3a3a4a;
    border-radius: 50%;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-cta {
        padding: 50px 0;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-text h2 {
        font-size: 28px;
    }

    .footer-cta-text p {
        max-width: 100%;
    }

    .footer-main {
        padding: 60px 0 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-nav,
    .footer-contact-info {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .footer-cta {
        padding: 40px 0;
    }

    .footer-cta-text h2 {
        font-size: 24px;
    }

    .footer-cta-text p {
        font-size: 14px;
    }

    .footer-cta-btn {
        padding: 16px 28px;
        font-size: 13px;
    }

    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .footer-cta {
        padding: 32px 0;
    }

    .footer-cta-text h2 {
        font-size: 20px;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-legal .separator {
        display: none;
    }
}

/* ===================================
   SERVICE SECTION — BADGE & FOOTER LINKS
=================================== */
.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary, #e63946);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
}

.service-image-box {
    position: relative;
}

.services-footer-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 52px;
    flex-wrap: wrap;
}

/* ===================================
   HOMEPAGE SHOWCASE SECTION
=================================== */
.hp-showcase-section {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.hp-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.hp-showcase-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 14px;
}

.hp-showcase-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.hp-showcase-block {
    margin-bottom: 70px;
}

.hp-showcase-block:last-child {
    margin-bottom: 0;
}

.hp-showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary, #e63946);
    background: rgba(230, 57, 70, 0.08);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 28px;
}

.hp-showcase-label i {
    font-size: 15px;
}

.hp-showcase-more {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 991.98px) {
    .hp-showcase-section {
        padding: 60px 0 80px;
    }

    .hp-showcase-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .hp-showcase-header h2 {
        font-size: 24px;
    }
}