/* Global Mobile Elements Hidden by Default */
.mobile-nav-toggler, .mobile-menu-overlay {
    display: none;
}

/* Design System */
:root {
    --primary-color: #e31e24;
    /* Red */
    --secondary-color: #1a237e;
    /* Dark Blue */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1400px !important;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Bottom Blur Bar */
.slider-bottom-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.slider-bottom-bar .service-bar-item {
    padding: 25px 25px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.slider-bottom-bar .service-bar-item:hover {
    transform: translateY(-5px);
}

@media (min-width: 992px) {
    /* Separator line between columns */
    .slider-bottom-bar .col-lg-3:not(:last-child) .service-bar-item::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
    }
}

.slider-bottom-bar .service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: none;
}

.slider-bottom-bar .service-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
    text-shadow: none;
}

.slider-bottom-bar .service-link {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(227, 30, 36, 0.15);
    border: none;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    width: fit-content;
}

.slider-bottom-bar .service-link i {
    font-size: 9px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card hover highlights the button lightly */
.slider-bottom-bar .service-bar-item:hover .service-link {
    background: rgba(227, 30, 36, 0.3);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
}

.slider-bottom-bar .service-bar-item:hover .service-link i {
    transform: translateX(3px);
}

/* Direct hover on the button makes it solid red */
.slider-bottom-bar .service-link:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4) !important;
}

.slider-bottom-bar .service-link:hover i {
    transform: translateX(5px) !important;
}

@media (max-width: 991px) {
    .slider-bottom-bar {
        position: relative;
        height: auto;
        min-height: auto;
        padding: 40px 0;
        background: #101828;
        margin-top: 0;
    }
    .slider-bottom-bar .service-bar-item {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .slider-bottom-bar .col-md-6:nth-last-child(-n+2) .service-bar-item {
        /* Remove bottom border on the last row of tablet view (2 cols per row) */
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .main-slider .slide-item {
        height: 650px !important;
        padding-top: 120px !important;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 767px) {
    .main-slider .slide-item {
        height: 550px !important;
    }
}

/* Main Header */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: transparent;
}

/* Header Upper */
.header-upper {
    padding: 20px 0 10px;
    background: transparent;
    border: none;
}

.header-upper .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-upper .logo {
    display: flex;
    align-items: center;
}

.header-upper .logo h1 {
    margin: 0;
    width: 3px;
    height: 3px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    opacity: 0;
}

.header-upper .logo a:last-child img {
    height: 80px;
    width: auto;
    display: block;
}

.header-upper .info-outer {
    display: flex;
    gap: 30px;
}

.header-upper .info-box .inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-upper .info-box .topicon img {
    width: 35px;
    height: 35px;
    display: block;
    filter: brightness(0) invert(1);
    /* İkonları beyaz yap */
}

.header-upper .info-box .text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-upper .info-box strong {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2px;
}

.header-upper .info-box span a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

/* Header Lower */
.header-lower {
    background: transparent;
    padding: 0;
    border: none;
}

.header-lower .nav-outer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.outer-box {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Navigation */
.main-menu .navigation {
    display: flex;
}

.main-menu .navigation>li {
    position: relative;
}

.main-menu .navigation>li>a {
    display: block;
    padding: 15px 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.main-menu .navigation>li:hover>a {
    color: var(--primary-color);
}

/* Home Icon Specific Style */
.main-menu .navigation>li:first-child {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.main-menu .navigation>li:first-child>a {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.main-menu .navigation>li:first-child:hover>a {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Dropdown Modernized - Compact & Brutalist */
.main-menu .navigation li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 70px -10px rgba(0, 0, 0, 0.15), 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.4s ease;
    z-index: 100;
    padding: 10px 0;
    border-radius: 4px;
    border: none;
}

.main-menu .navigation li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.main-menu .navigation li ul li {
    position: relative;
    padding: 0 10px; /* Sağ ve sol boşluklar eşitlendi */
}

.main-menu .navigation li ul li:last-child {
    border-bottom: none;
}

.main-menu .navigation li ul li a {
    display: block;
    padding: 8px 28px 8px 15px; /* Toplam padding (43px) sabit kalacak */
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    position: relative;
    white-space: nowrap;
}

.main-menu .navigation li ul li a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.main-menu .navigation li ul li a:hover {
    background: transparent;
    color: var(--primary-color);
    padding-left: 28px; /* 13px sağa kayar */
    padding-right: 15px; /* Sağdan 13px daralır, toplam genişlik değişmez */
}

.main-menu .navigation li ul li a:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Quote Button (Header) */
.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(45deg, #b71c1c, #e31e24);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
    transition: all 0.4s ease;
    gap: 10px;
}

.quote-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.quote-btn:hover {
    background: linear-gradient(45deg, #e31e24, #b71c1c);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.quote-btn:hover i {
    transform: translateX(5px);
}

/* Language Switcher Dropdown */
.lang-switcher {
    position: relative;
    padding: 10px 0;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.lang-toggle span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-toggle .flag img {
    width: 22px;
    height: 15px;
    display: block;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-toggle i {
    font-size: 11px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.lang-switcher:hover .lang-toggle {
    color: var(--primary-color);
}

.lang-switcher:hover .lang-toggle i {
    transform: rotate(180deg);
}

.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    margin-top: 10px;
}

.lang-switcher:hover .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.lang-list li a .flag img {
    width: 21px;
    height: 14px;
    display: block;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lang-list li a:hover,
.lang-list li a.active {
    background: rgba(227, 30, 36, 0.05);
    color: var(--primary-color);
}

/* Main Slider */
.main-slider {
    position: relative;
}

.main-slider .slide-item {
    position: relative;
    height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 250px;
    /* Header alanını dengelemek için */
}

/* Dark Overlay */
.main-slider .slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.main-slider .content-box {
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}

.main-slider .content-box h2 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0;
    /* Animasyon başlamadan önce gizli */
}

.main-slider .content-box h2 em {
    display: block;
    color: var(--primary-color);
    font-style: normal;
}

.main-slider .content-box p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    /* Animasyon başlamadan önce gizli */
}

.main-slider .content-box .btn-box {
    opacity: 0;
    /* Animasyon başlamadan önce gizli */
}

/* Owl Carousel Fade Transition Support */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    animation-name: owlFadeOut;
}

@keyframes owlFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Animations */
.main-slider .owl-item:not(.active) h2,
.main-slider .owl-item:not(.active) p,
.main-slider .owl-item:not(.active) .btn-box {
    animation: none !important;
    opacity: 0 !important;
}

.main-slider .owl-item.active h2,
.main-slider .owl-item.active p,
.main-slider .owl-item.active .btn-box {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    animation-name: fadeInLeft;
}

.main-slider .owl-item.active h2 {
    animation-delay: 0.15s;
}

.main-slider .owl-item.active p {
    animation-delay: 0.35s;
}

.main-slider .owl-item.active .btn-box {
    animation-delay: 0.55s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-15px, 0, 0);
        /* Daha kısa hareket mesafesi */
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Buttons (Slider) */
.main-slider .btn-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    /* Oval modern görünüm */
    margin-right: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
    gap: 12px;
}

.main-slider .btn-box a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Primary Button (First Child) */
.main-slider .btn-box a:first-child {
    background: linear-gradient(45deg, #b71c1c, #e31e24);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.main-slider .btn-box a:first-child:hover {
    background: linear-gradient(45deg, #e31e24, #b71c1c);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

.main-slider .btn-box a:first-child:hover i {
    transform: translateX(5px);
}

/* Secondary Button (Last Child) */
.main-slider .btn-box a:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-right: 0;
}

.main-slider .btn-box a:last-child:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.main-slider .btn-box a:last-child:hover i {
    transform: translateX(5px);
}

/* Owl Carousel Dots Customization - Vertical Left */
.mainslider .owl-dots {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.mainslider .owl-dot {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    outline: none !important;
}

.mainslider .owl-dot span {
    width: 16px !important;
    /* Biraz büyüttüm denge için */
    height: 16px !important;
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    margin: 0 !important;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.mainslider .owl-dot span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mainslider .owl-dot.active span::after {
    width: 10px;
    height: 10px;
}
/* Page Title Section */
.page-title {
    position: relative;
    padding: 220px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.4);
}

.page-title .content-box {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 56px;
    line-height: 1.2em;
    font-weight: 900;
    margin-bottom: 5px;
    color: #ffffff;
}

.bread-crumb {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.bread-crumb li {
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.bread-crumb li:first-child a {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.bread-crumb li:first-child a:hover {
    color: var(--primary-color);
}

.bread-crumb li:first-child a::before {
    content: '\f015';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.bread-crumb li:first-child a:hover::before {
    background: rgba(255, 255, 255, 0.12);
}

.bread-crumb li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bread-crumb li a:hover {
    color: var(--primary-color);
}

.bread-crumb li::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-left: 15px;
    vertical-align: middle;
}

.bread-crumb li:last-child::after {
    display: none;
}


/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.sticky-header.fixed-header {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.sticky-header .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.sticky-header .logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.sticky-header .logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.sticky-header .main-menu .navigation > li > a {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
}

.sticky-header .main-menu .navigation > li:hover > a {
    color: var(--primary-color);
}

.sticky-header .main-menu .navigation > li:first-child:hover > a {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.sticky-header .sticky-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-header .sticky-contact .icon-box {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    position: relative;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(231, 29, 36, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(231, 29, 36, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(231, 29, 36, 0);
    }
}

.sticky-header .sticky-contact .text-box {
    display: flex;
    flex-direction: column;
}

.sticky-header .sticky-contact .label {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.sticky-header .sticky-contact .number {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.sticky-header .sticky-contact .number:hover {
    color: var(--primary-color);
}

/* Main Footer Modernized */
.main-footer {
    position: relative;
    background: #111111;
    padding: 100px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-top: 0;
}

.footer-widget {
    position: relative;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 200px;
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-widget > span {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    white-space: nowrap;
}

.footer-widget > span::after {
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 15px;
    width: 40px;
}

.footer-widget .text {
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 10px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 28px;
}

.footer-links li a:hover::before {
    left: 8px;
}

.contact-info li {
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
}

.contact-info li a {
    color: inherit;
    transition: all 0.3s ease;
}

.contact-info li a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding: 30px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.footer-bottom .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 14px;
}

.copyright-text a {
    color: var(--white);
    font-weight: 600;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
}

.footer-credit a {
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: #ffffff;
}

.footer-credit .divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.credit-icon {
    height: 20px;
    width: auto;
    display: block;
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-credit:hover .credit-icon {
    opacity: 1;
}

/* ==========================================================================
   Why Poweras Section
   ========================================================================== */
.why-poweras-section {
    position: relative;
    background: var(--white);
}

.why-poweras-section h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.0;
    color: #111111;
    letter-spacing: -1.5px;
    margin: 0;
}

.why-poweras-section h2 span {
    color: inherit;
}

.why-text-wrapper {
    padding-left: 45px;
    border-left: 2px solid var(--primary-color);
}

.why-text-wrapper p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Feature Cards */
.feature-card {
    position: relative;
    padding: 40px 30px;
    background: #f8f9fa;
    border: none;
    border-radius: 16px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #ffffff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.25);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 14px;
    transition: all 0.4s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .why-poweras-section h2 {
        font-size: 34px;
        text-align: center;
        letter-spacing: -0.5px;
    }
    .why-text-wrapper {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(227, 30, 36, 0.15);
        padding-top: 25px;
        margin-top: 25px;
    }
    .why-text-wrapper p {
        text-align: center;
        font-size: 16px;
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Large Screens */
@media (max-width: 1200px) {
    .header-upper .info-box {
        margin-left: 20px;
    }
}

/* Tablets / Small Desktops */
@media (max-width: 991px) {
    .header-upper {
        position: relative;
        height: 100px;
    }
    
    .header-upper .logo-outer {
        margin: 0;
    }
    
    .header-upper .logo {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .header-upper .info-outer {
        display: none; /* Mobile'de üstteki detayları gizliyoruz */
    }
    
    .header-lower .main-menu {
        display: none; /* Masaüstü menüsünü gizliyoruz */
    }
    
    .header-lower .outer-box {
        display: none; /* Dil seçici ve butonu mobil ekranlarda gizliyoruz */
    }
    
    .header-lower .nav-outer {
        justify-content: center;
    }
    
    .sticky-header {
        display: none !important; /* Mobilde sticky header'ı tamamen devre dışı bırakıyoruz */
    }

    .mobile-nav-toggler {
        display: flex;
        flex-direction: column;
        gap: 7px;
        position: fixed;
        top: 30px;
        right: 20px;
        z-index: 1001;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 10px 10px;
        border-radius: 3px;
        border: none;
        transition: all 0.3s ease;
    }

    .mobile-nav-toggler span {
        display: block;
        width: 32px;
        height: 3px;
        background: #ffffff;
        transition: all 0.3s ease;
        border-radius: 1px;
    }

    /* Hamburger to X Transformation */
    .mobile-nav-toggler.active span {
        background: #ffffff; /* Aktifken de beyaz kalsın veya kırmızıya dönsün demiştiniz, beyaz yapıyorum */
    }

    .mobile-nav-toggler.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .mobile-nav-toggler.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggler.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #111111;
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-100%);
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto; /* İçerik taşarsa kaydırılabilsin */
    }

    .mobile-menu-content {
        padding: 20px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .mobile-logo {
        margin-bottom: 50px;
    }

    .mobile-logo img {
        height: 60px;
        width: auto;
    }

    .mobile-nav-container {
        width: 100%;
    }

    .mobile-nav-container .navigation {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-container .navigation > li:first-child {
        display: none; /* Home ikonunu mobil menüde gizliyoruz */
    }

    .mobile-nav-container .navigation > li {
        width: 100%;
    }

    .mobile-nav-container .navigation > li > a {
        display: block;
        padding: 12px 0;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        text-align: left;
    }

    .mobile-nav-container .navigation > li:last-child > a {
        border-bottom: none;
    }

    .mobile-nav-container .navigation > li > a:hover {
        color: var(--primary-color);
    }

    /* Submenu Styles for Mobile */
    .mobile-nav-container .navigation li ul {
        display: none;
        width: 100%;
        background: transparent;
        list-style: none;
        padding: 5px 0;
        margin: 0;
    }

    .mobile-nav-container .navigation li ul li a {
        display: flex;
        align-items: center;
        padding: 8px 20px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        font-weight: 400;
        text-align: left;
        border-bottom: none;
        background: transparent !important;
    }

    .mobile-nav-container .navigation li ul li a::before {
        content: '';
        width: 5px;
        height: 5px;
        background: var(--primary-color);
        display: inline-block;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .mobile-nav-container .navigation li ul li a:hover {
        color: var(--primary-color);
        background: transparent !important;
    }

    .mobile-nav-container .navigation li.dropdown > a {
        position: relative;
        padding-right: 20px;
    }

    .mobile-nav-container .navigation li.dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        transition: all 0.3s ease;
        opacity: 0.5;
    }

    .mobile-nav-container .navigation li.open > a::after {
        transform: translateY(-50%) rotate(180deg);
        color: var(--primary-color);
        opacity: 1;
    }

    .mobile-nav-container .navigation li.open > a {
        color: var(--primary-color);
    }

    .mobile-menu-footer {
        margin-top: 30px;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 30px;
    }

    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: left;
    }

    .info-item i {
        color: var(--primary-color);
        font-size: 15px;
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }

    .info-item span {
        line-height: 1.4;
    }

    .info-item:hover {
        color: #ffffff;
    }

    body.mobile-menu-active .mobile-menu-overlay {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    body.mobile-menu-active {
        overflow: hidden;
    }

    .main-footer {
        padding: 60px 0 0;
    }
}

/* Mobile Screens */
@media (max-width: 767px) {
    .header-upper .inner-container {
        justify-content: center;
    }
    
    .footer-bottom .inner-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-credit {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-credit .divider {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .logo a img {
        max-width: 180px;
    }
}

/* Contact Page Styles */
.contact-intro {
    margin-bottom: 40px;
    text-align: center;
}
.contact-intro h2 {
    font-size: 34px;
    font-weight: 900;
    color: #02182a;
    margin-bottom: 15px;
    text-align: center;
}
.contact-intro p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Harita (Map) Container & Leaflet Custom Map Styles */
.harita {
    width: 94%;
    margin: 0px 3% 3% 3%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.harita #leaflet-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    z-index: 1;
}
.harita .leaflet-tile-container {
    filter: grayscale(100%);
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.harita:hover .leaflet-tile-container {
    filter: grayscale(0%);
}

/* Modern Pin Tasarımı (kurallar.md uyarınca) */
.custom-marker-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 75px !important;
    height: 75px !important;
    position: relative;
}

.modern-pin {
    width: 60px;
    height: 60px;
    background: #e3000f; /* Brand Red */
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    margin-bottom: 20px;
}

.modern-pin::after {
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-marker-wrapper::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(2px);
}

/* Premium Form Elements & Icons Customization */
.iletisim .form-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.iletisim .form-wrapper input,
.iletisim .form-wrapper select {
    width: 100% !important;
    height: 60px !important;
    padding: 10px 20px 10px 65px !important; /* Adjusted for narrower modern icon zone */
    border: 1px solid #e1e2e3 !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.iletisim .form-wrapper textarea {
    width: 100% !important;
    min-height: 150px !important;
    padding: 15px 20px 15px 65px !important;
    border: 1px solid #e1e2e3 !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.iletisim .form-wrapper input:focus,
.iletisim .form-wrapper textarea:focus,
.iletisim .form-wrapper select:focus {
    border-color: #e3000f !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.08) !important;
}

/* Modern minimalist icon styling (no full border, no heavy background) */
.iletisim .form-wrapper i {
    position: absolute !important;
    left: 1px !important;
    top: 1px !important;
    width: 48px !important; /* Narrower and cleaner */
    height: 58px !important; /* Matches input inner height */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #e3000f !important; /* Kurumsal kırmızı tonu */
    z-index: 5 !important;
    pointer-events: none !important;
    background: transparent !important; /* Removed full borders/heavy background color */
    font-size: 15px !important; /* Smaller, cleaner icon size */
    transform: none !important;
    transition: all 0.3s ease !important;
}

/* Modern vertical separator line with exactly 30px height centered vertically */
.iletisim .form-wrapper i::after {
    content: '' !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 1px !important;
    height: 30px !important; /* max height is 30px */
    background-color: #e8e8e8 !important;
    transition: background-color 0.3s ease !important;
}

.iletisim .form-wrapper input:focus + i,
.iletisim .form-wrapper textarea:focus + i,
.iletisim .form-wrapper select:focus + i {
    color: #e3000f !important; /* Icon turns red on focus */
}

.iletisim .form-wrapper input:focus + i::after,
.iletisim .form-wrapper textarea:focus + i::after,
.iletisim .form-wrapper select:focus + i::after {
    background-color: #e3000f !important; /* Separator turns red on focus */
}

/* Textarea icon adjustments */
.iletisim .form-wrapper.field-textarea i {
    top: 1px !important;
    height: 48px !important; /* Square at top-left of textarea */
    border-bottom: none !important; /* No bottom border for a sleek borderless vertical line */
}

.iletisim .form-wrapper.field-textarea textarea {
    padding-top: 15px !important;
}

/* Harita Yol Tarifi Butonu Stilleri */
.harita {
    position: relative !important;
}

.directions-btn {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #e3000f !important; /* Brand Red by default */
    color: #ffffff !important; /* White text by default */
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 24px rgba(227, 0, 15, 0.2) !important;
    border: 1px solid rgba(227, 0, 15, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
}

.directions-btn i {
    color: #ffffff !important; /* White icon by default */
    font-size: 15px !important;
    transition: transform 0.3s ease !important;
}

.directions-btn:hover {
    background: #b8000b !important; /* Darker red on hover */
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(227, 0, 15, 0.35) !important;
    transform: translateY(-2px) !important;
}

.directions-btn:hover i {
    color: #ffffff !important;
    transform: scale(1.1) rotate(15deg) !important;
}

/* Modern wiletisim Widget Styles */
.wiletisim {
    background: linear-gradient(135deg, var(--primary-color) 0%, #660003 100%) !important;
    padding: 40px 30px !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.wiletisim::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -50% !important;
    width: 300px !important;
    height: 300px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    transition: all 0.6s ease !important;
    z-index: -1 !important;
}

.wiletisim:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22) !important;
}

.wiletisim:hover::before {
    transform: translate(-10px, 10px) scale(1.1) !important;
}

.wiletisim span {
    display: block !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
}

.wiletisim p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 20px !important;
}

.wiletisim ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.wiletisim ul li {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.wiletisim ul li.adres {
    align-items: flex-start !important;
}

.wiletisim ul li.adres i {
    margin-top: 2px !important;
}

.wiletisim ul li i {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    color: #ffffff !important;
    flex-shrink: 0 !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wiletisim ul li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    word-break: break-all !important;
}

.wiletisim ul li a:hover {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: underline !important;
}

.wiletisim ul li:hover i {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Page Wrapper Styles */
.sayfa {
    display: block !important;
    padding: 100px 0px !important;
}

/* Solutions & Sectors Section Styles */
.solutions-section {
    background-color: #660003 !important; /* Solid dark red fallback */
    background: linear-gradient(135deg, #e31e24 0%, #4a0002 100%) !important; /* Hardcoded fallback gradient */
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a0002 100%) !important;
    padding: 90px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.solutions-header {
    text-align: center !important;
    margin-bottom: 55px !important;
}

.solutions-header h2 {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    line-height: 1.2 !important;
}

.solutions-header p {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 650px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    z-index: 1 !important;
}

.solution-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: linear-gradient(135deg, rgba(74, 0, 2, 0.4) 0%, rgba(10, 0, 0, 0.9) 100%), var(--card-bg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    transform: scale(1.15) !important;
}

.solution-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.solution-card:hover::before {
    opacity: 0.85 !important;
    transform: scale(1.0) !important;
}

.solution-card .card-body {
    padding: 32px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    position: relative !important;
    z-index: 2 !important;
}

.solution-card .card-header-row {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
}

.solution-card .card-image-box {
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.solution-card .card-image-box a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.solution-card .card-image-box img {
    max-height: 28px !important;
    max-width: 28px !important;
    object-fit: contain !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1)) !important;
}

.solution-card .card-image-box i {
    font-size: 24px !important;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.solution-card:hover .card-image-box {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px) !important;
}

.solution-card:hover .card-image-box img,
.solution-card:hover .card-image-box i {
    transform: scale(1.1) !important;
}

.solution-card .card-body h3 {
    margin-bottom: 0px !important;
    flex-grow: 1 !important;
}

.solution-card .card-body h3 a {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    line-height: 1.3 !important;
}

.solution-card .card-body h3 a:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}

.solution-card .card-body p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 0px !important;
    flex-grow: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .solutions-section {
        padding: 60px 0 !important;
    }
    
    .solutions-header h2 {
        font-size: 30px !important;
    }
    
    .solution-card .card-body {
        padding: 26px 20px !important;
    }
    
    .solution-card .card-header-row {
        gap: 12px !important;
    }
    
    .solution-card .card-image-box {
        width: 44px !important;
        height: 44px !important;
    }
    
    .solution-card .card-image-box img {
        max-height: 24px !important;
        max-width: 24px !important;
    }
    
    .solution-card .card-body h3 a {
        font-size: 16px !important;
    }
}