:root {
    --font-nunito: "Nunito", sans-serif;
    --white-color: #fff;
    --black-color: #0f141a;
    --black-color2: #0f141b;
    --gray-color: #f2f2f7;
    --paragraph-color: #272727;
    --theme-color: #0f141b;
    --body-color: #f3f3f7;
    --border-color: #232323;
    --black-soft-color: #7e7e7e;
    --border-radius: 15px;
    --header-height: 70px;
    --topbar-height: 40px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1b1f23;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--theme-color), #4a5fd1);
    border-radius: 10px;
    border: 2px solid #1b1f23;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #4a5fd1, var(--theme-color));
    box-shadow: 0 0 10px rgba(102, 128, 255, 0.5);
}

.tt-style-switch {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    font-size: 20px;
    color: var(--white-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 0 solid;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-size: 16px;
    font-family: var(--font-nunito);
}

body.bg-dark-5 {
    background: #121212;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-nunito);
    font-weight: 700;
    margin-bottom: 15px;
}

img {
    max-width: 100%;
}

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

p {
    font-size: 16px !important;
    margin: 0;
    color: var(--paragraph-color);
    line-height: 1.8;
}

a,
a:hover {
    color: var(--paragraph-color);
    text-decoration: none;
}

input,
select,
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

header .top ul li a {
    color: var(--white-color);
    font-size: 15px;
}
.mb-55 {
    margin-bottom: 30px;
}

/* Section Margin Utility */
.sec-mar {
    margin-top: 60px;
    margin-bottom: 60px;
}

.section-title-3 p {
    color: var(--paragraph-color);
}
/* =============================================
   HEADER STYLES - Light Theme
   ============================================= */

/* Top Bar */
.top-bar {
    padding: 8px 0;
    border-bottom: 0.4px solid #e5e5e5;
}

.top-bar-inner {
    display: flex;
    justify-content: end;
    align-items: center;
}

.top-bar-partners {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-partners a {
    display: flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.top-bar-partners a:hover {
    opacity: 1;
}

.top-bar-partners img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.top-bar-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-bar-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black-soft-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-bar-menu > li > a:hover {
    color: var(--theme-color);
}

.top-bar-menu > li > a i {
    font-size: 14px;
}

/* Top Dropdown */
.top-dropdown {
    position: relative;
}

.top-dropdown-toggle {
    cursor: pointer;
}

/* Support icon with online indicator */
.support-icon {
    position: relative;
    display: inline-flex;
}

.support-icon .online-dot {
    position: absolute;
    bottom: -1px;
    right: -3px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    border: 1.5px solid #fff;
}

.top-dropdown-toggle .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.top-dropdown.active .top-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.top-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    min-width: 150px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    list-style: none;
}

.top-dropdown.active .top-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--paragraph-color);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.top-dropdown-menu li a:hover {
    background-color: var(--gray-color);
    color: var(--theme-color);
}

/* Main Header */
.main-header {
    background-color: var(--white-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 0.4px solid #e5e5e5;
}

.main-header.scroll-down {
    transform: translateY(-100%);
}

.main-header.scroll-up {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Header Logo */
.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-logo .logo-light {
    display: none;
}

.header-logo .logo-dark {
    display: block;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    color: var(--paragraph-color);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Desktop: hide mobile-only links */
.nav-link.mobile-only {
    display: none;
}

/* Mobile submenu - hidden by default on desktop */
.mobile-submenu {
    display: none;
}

.nav-link:hover {
    background-color: var(--gray-color);
    color: var(--theme-color);
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.nav-item.active .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 240px !important;
    background-color: var(--white-color) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
    padding: 12px 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
    z-index: 1000 !important;
    list-style: none !important;
    margin: 0 !important;
    border: none !important;
    display: block !important;
}

.nav-item.has-dropdown.active .dropdown-menu,
.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(5px) !important;
}

.nav-item .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--paragraph-color);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-item .dropdown-menu li a i {
    width: 18px;
    color: var(--theme-color);
    font-size: 14px;
}

.nav-item .dropdown-menu li a:hover {
    background-color: var(--gray-color);
    color: var(--theme-color);
    padding-left: 25px;
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: var(--white-color);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Hover kaldırıldı - sadece click ile açılacak */
/* max-height JS tarafından dinamik olarak ayarlanıyor */

/* Mega Menu Close Button */
.mega-menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--gray-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mega-menu-close:hover {
    background-color: var(--black-color2);
    transform: rotate(90deg);
}

.mega-menu-close i {
    font-size: 18px;
    color: var(--black-color);
    transition: color 0.3s ease;
}

.mega-menu-close:hover i {
    color: var(--white-color);
}

.mega-menu-inner {
    display: flex;
    min-height: 400px;
    max-width: 1320px;
    margin: 0 auto;
}

/* Sol Taraf - Kategoriler */
.mega-categories {
    width: 320px;
    background-color: transparent;
    padding: 20px 0;
    flex-shrink: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    height: 750px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.mega-categories::-webkit-scrollbar {
    width: 4px;
}

.mega-categories::-webkit-scrollbar-track {
    background: transparent;
}

.mega-categories::-webkit-scrollbar-thumb {
    background: var(--black-soft-color);
    opacity: 0.4;
    border-radius: 2px;
}

.mega-categories::-webkit-scrollbar-thumb:hover {
    opacity: 0.6;
}

.mega-category-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin: 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.mega-category-item:hover {
    background-color: var(--gray-color);
}

.mega-category-item.active {
    background-color: var(--black-color2);
}

.mega-category-item.active .category-title {
    color: var(--white-color);
}

.mega-category-item .category-content {
    flex: 1;
}

.mega-category-item .category-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    transition: color 0.2s ease;
}

.mega-category-item i {
    font-size: 12px;
    color: var(--black-soft-color);
    transition: all 0.2s ease;
    margin-top: 4px;
}

.mega-category-item.active i {
    color: var(--white-color);
    transform: translateX(3px);
}

/* SaÄŸ Taraf - Detaylar */
.mega-details {
    flex: 1;
    padding: 25px 30px;
    position: relative;
}

.mega-detail-panel {
    display: none;
}

.mega-detail-panel.active,
.mega-detail-panel.server-panel.active {
    display: block !important;
}

/* Mega Menu Category Image */
.mega-category-image {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.mega-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 14px 18px;
}

.mega-category-overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.detail-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0;
}

.detail-header .view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.detail-header .view-all:hover {
    gap: 10px;
}

.detail-header .view-all i {
    font-size: 11px;
}

/* Detay Grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.detail-item::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--theme-color);
    font-size: 12px;
}

.detail-item:hover {
    background-color: var(--gray-color);
}

.detail-item:hover::after {
    opacity: 1;
    right: 12px;
}

.detail-item .detail-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--black-color);
    transition: color 0.2s ease;
}

.detail-item .detail-item-desc {
    font-size: 12px;
    font-weight: 400;
    color: var(--paragraph-color);
    line-height: 1.4;
    padding-right: 20px;
}

.detail-item:hover .detail-title {
    color: var(--theme-color);
}

/* Mega Featured Cards */
.mega-featured-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mega-featured-cards.single {
    display: block;
}

.mega-featured-card {
    display: flex;
    align-items: stretch;
    background: var(--gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-featured-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.mega-featured-card .featured-media {
    width: 120px;
    min-height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.mega-featured-card .featured-media video,
.mega-featured-card .featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-featured-card .featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    gap: 6px;
}

.mega-featured-card .featured-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-featured-card .featured-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.4;
}

.mega-featured-card .featured-desc p {
    font-size: 14px !important;
    font-weight: 400;
    color: var(--black-color) !important;
    line-height: 1.4;
}

.mega-featured-card .featured-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--theme-color);
    font-size: 12px;
    margin-top: 4px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}

.mega-featured-card:hover .featured-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Server Description */
.server-description {
    font-size: 14px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Mega Menu Custom Offer Button */
.mega-custom-offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(
        135deg,
        var(--primary-color1) 0%,
        var(--primary-color2) 100%
    );
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-color1-rgb), 0.3);
}

.mega-custom-offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-color1-rgb), 0.4);
    color: #fff;
}

.mega-custom-offer-btn i {
    font-size: 14px;
}

/* Mega Server Buttons Container */
.mega-server-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.mega-server-buttons .mega-custom-offer-btn {
    margin-top: 0;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.mega-server-buttons .mega-configurator-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-server-buttons .mega-configurator-btn:hover {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    border: none;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-btn i {
    font-size: 25px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Slide Card - Kayma Animasyonu */
.slide-card .service-link {
    position: relative;
    overflow: hidden;
}

.slide-card .link-text {
    display: inline-block;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-card .service-arrow {
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-card .service-arrow i {
    font-size: 14px;
}

.slide-card:hover .link-text {
    transform: translateX(0);
    opacity: 1;
}

.slide-card:hover .service-arrow {
    transform: translateX(0);
    opacity: 1;
}

/* Server Subcategory Header */
.server-subcategory-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--theme-color);
}

.server-subcategory-header svg {
    width: 22px;
    height: 22px;
    color: var(--theme-color);
}

.server-subcategory-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

/* Server Row Styles (Horizontal Layout) */
.server-row-wrapper {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.server-row-wrapper:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border-color: #ddd;
}

/* Processor Toggle Styles */
.processor-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.toggle-buttons {
    display: flex;
    gap: 10px;
    border: 2px solid var(--theme-color);
    border-radius: 30px;
    padding: 4px;
    background: #f5f5f5;
    justify-content: center;
}

.toggle-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--theme-color);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    text-decoration: none;
}

.toggle-btn:hover {
    background: rgba(var(--theme-color-rgb), 0.1);
}

.toggle-btn.active {
    background: var(--theme-color);
    color: white;
    box-shadow: 0 2px 8px rgba(var(--theme-color-rgb), 0.3);
}

.toggle-btn input[type="radio"],
.toggle-btn input[type="checkbox"] {
    display: none;
}

/* Configurator CPU Toggle Styling */
.config-cpu-toggle {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.config-cpu-toggle .toggle-btn {
    padding: 12px 20px;
    font-size: 15px;
    min-width: 150px;
}

.server-row {
    display: flex;
    align-items: center;
    padding: 20px 28px;
    gap: 16px;
    cursor: pointer;
}

.server-col {
    flex: 1;
    min-width: 0;
}

.server-col-name {
    flex: 1;
}

.server-col-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--black-soft-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.server-col-label i,
.server-col-label svg {
    width: 13px;
    height: 13px;
    color: var(--theme-color);
    stroke: var(--theme-color);
}

.server-col-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--paragraph-color);
}

.server-col-name .server-col-value {
    font-weight: 700;
    color: var(--black-color);
}

.server-col-actions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
}

.server-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.server-btn svg {
    width: 15px;
    height: 15px;
}

.server-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.server-btn-primary {
    background: var(--theme-color);
    color: #fff;
}

.server-btn-primary:hover {
    color: #fff;
}

.server-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.server-btn-whatsapp:hover {
    color: #fff;
}

/* Server Row Toggle Arrow */
.server-col-toggle {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-color);
    color: var(--paragraph-color);
    transition: all 0.3s ease;
}

.server-col-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.server-row-wrapper:hover .server-col-toggle {
    background: var(--theme-color);
    color: #fff;
    stroke: #fff;
}

.server-row-wrapper.open .server-col-toggle {
    background: var(--theme-color);
    color: #fff;
    stroke: #fff;
}

.server-row-wrapper.open .server-col-toggle svg {
    transform: rotate(180deg);
}

/* Server Details Dropdown */
.server-details-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.server-row-wrapper.open .server-details-dropdown {
    max-height: 400px;
}

.server-features-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    list-style: none;
    padding: 0 28px 20px;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.server-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--paragraph-color);
    padding: 6px 0;
}

.server-features-list li i,
.server-features-list li svg {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 3px;
    background: #e8f5e9;
    color: #2e7d32;
    stroke: #2e7d32;
    flex-shrink: 0;
}

/* Common Features Section */
.common-features {
    padding: 60px 0;
}

.common-features-header {
    margin-bottom: 40px;
}

.common-features-header > svg,
.common-features-header > i {
    width: 40px;
    height: 40px;
    stroke: var(--theme-color);
    margin-bottom: 16px;
}

.common-features-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 8px;
}

.common-features-header p {
    font-size: 15px;
    color: var(--black-soft-color);
    max-width: 500px;
    margin: 0 auto;
}

.common-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.common-feature-item {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.common-feature-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: #ddd;
}

.common-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gray-color);
}

.common-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--theme-color);
}

.common-feature-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 6px;
}

.common-feature-body p {
    font-size: 13px;
    color: var(--black-soft-color);
    line-height: 1.6;
    margin: 0;
}

/* CPU Toggle Switch */
.cpu-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cpu-toggle-wrapper .cpu-label {
    font-weight: 500;
    color: var(--paragraph-color);
    transition: color 0.3s ease;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-color);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--theme-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Feature Card */
.feature-card {
    background: var(--gray-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(
        135deg,
        var(--gray-color) 0%,
        rgba(var(--theme-color-rgb), 0.1) 100%
    );
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        var(--theme-color) 0%,
        var(--theme-color2) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--paragraph-color);
    margin: 0;
    line-height: 1.6;
}

/* Mega Menu Grid Layout */
.mega-menu-grid .mega-menu-inner {
    padding: 30px 40px;
}

.mega-grid-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mega-grid-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--gray-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    height: max-content;
}

.mega-grid-item:hover {
    background-color: var(--white-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.mega-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.mega-item-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.mega-item-content {
    flex: 1;
}

.mega-item-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color2);
    margin: 0 0 6px 0;
    transition: color 0.2s ease;
}

.mega-grid-item:hover .mega-item-content h5 {
    color: var(--theme-color);
}

.mega-item-content p {
    font-size: 13px;
    color: var(--paragraph-color);
    margin: 0;
    line-height: 1.5;
}

.mega-item-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--black-soft-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.mega-grid-item:hover .mega-item-arrow {
    opacity: 1;
    color: var(--theme-color);
    right: 15px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .mata-btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: none;
}

.mata-btn:hover {
    color: var(--white-color);
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-nunito);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header.btn-outline {
    background-color: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
}

.btn-header.btn-outline:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.btn-header.btn-primary {
    background: linear-gradient(135deg, var(--theme-color), #4a5fd1);
    border: none;
    color: var(--white-color);
}

.btn-header.btn-primary:hover {
    background: linear-gradient(135deg, #4a5fd1, var(--theme-color));
    box-shadow: 0 5px 20px rgba(102, 128, 255, 0.4);
    transform: translateY(-2px);
}

/* =============================================
   MATA BUTTONS - Snake Border Gradient Effect
   ============================================= */

/* Base Button Style */
.mata-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    color: var(--white-color);
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    font-family: var(--font-nunito);
}

/* MATA Button 1 - Blue Gradient Box Shadow */
.mata-btn-1 {
    background-color: var(--theme-color);
    transition:
        box-shadow 0.4s ease,
        transform 0.3s ease;
}
.mata-btn-1:hover {
    box-shadow:
        0 0 20px rgba(0, 189, 107, 0.45),
        0 0 40px rgba(0, 164, 189, 0.35),
        0 0 60px rgba(0, 153, 255, 0.25);
}

.mata-btn-2 {
    background: transparent;
    border: 2px solid var(--white-color);
    transition:
        box-shadow 0.4s ease,
        background 0.3s ease,
        transform 0.3s ease;
}
.mata-btn-2:hover {
    background: rgba(99, 102, 241, 0.08);
    box-shadow:
        0 0 20px rgba(99, 102, 241, 0.45),
        0 0 40px rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

.mata-btn-3 {
    background: transparent;
    transition:
        box-shadow 0.4s ease,
        transform 0.3s ease;
}
.mata-btn-3:hover {
    box-shadow:
        0 0 20px rgba(236, 72, 153, 0.5),
        0 0 40px rgba(249, 115, 22, 0.35),
        0 0 60px rgba(234, 179, 8, 0.25);
    transform: translateY(-1px);
}

/* Snake Rotation Animation */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes snake-rotate {
    0% {
        --angle: 0deg;
    }
    100% {
        --angle: 360deg;
    }
}

/* Fallback for browsers that don't support @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .mata-btn-1::before {
        background: linear-gradient(90deg, #0f141b, #4a5fd1, #0f141b);
        background-size: 200% 100%;
        animation: snake-fallback 2s linear infinite;
    }

    .mata-btn-2::before {
        background: linear-gradient(90deg, #4a5fd1, #8b5cf6, #4a5fd1);
        background-size: 200% 100%;
        animation: snake-fallback 2s linear infinite;
    }

    .mata-btn-3::before {
        background: linear-gradient(90deg, #06b6d4, #06d6a0, #06b6d4);
        background-size: 200% 100%;
        animation: snake-fallback 2s linear infinite;
    }

    @keyframes snake-fallback {
        0% {
            background-position: 0% 50%;
        }
        100% {
            background-position: 200% 50%;
        }
    }
}

/* Backward compatibility for old class */
.btn-header.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--white-color);
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    font-family: var(--font-nunito);
    background: var(--theme-color);
}

.btn-header.btn-cta::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #0f141b;
    border-radius: calc(var(--border-radius) - 4px);
    z-index: -1;
}

.btn-header.btn-cta:hover::before {
    background: linear-gradient(135deg, #4a5fd1, #0f141b);
    animation: none;
}

.btn-header.btn-cta:hover {
    box-shadow: 0 5px 25px rgba(74, 95, 209, 0.4);
    transform: translateY(-2px);
}

.btn-blob {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--paragraph-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Contact */
.mobile-contact {
    display: none;
}

/* Body menu open */
body.menu-open {
    overflow: hidden;
}

/* =============================================
   RESPONSIVE HEADER STYLES
   ============================================= */

/* ============================================
   HEADLINE CENTER SLIDER
   ============================================ */

.headline-section {
    position: relative;
    background: #fff;
    padding: 30px 0;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.headline-section .container {
    position: relative;
    max-width: 100%;
    padding: 0;
}

/* Swiper */
.headline-swiper {
    overflow: visible !important;
    padding: 20px 0;
}

/* Slide Item */
.headline-slide-item {
    position: relative;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide genişliği - slidesPerView: auto için */
.headline-swiper .swiper-slide {
    width: 85%;
    transition: opacity 0.5s ease;
}

/* İçerik scale efekti - slide boyutu sabit kalır */
.headline-swiper .swiper-slide .headline-slide-item {
    transform: scale(0.9);
    opacity: 0.5;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

/* Aktif slide içeriği */
.headline-swiper .swiper-slide-active .headline-slide-item {
    transform: scale(1);
    opacity: 1;
}

/* Background */
.headline-slide-item .headline-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.headline-slide-item .headline-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.swiper-slide-active .headline-slide-item:hover .headline-bg img {
    transform: scale(1.05);
}

.headline-slide-item .headline-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Content */
.headline-content {
    position: absolute;
    top: 25%;
    left: 5%;
    padding: 35px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-width: 400px;
}

.swiper-slide-active .headline-content {
    opacity: 1;
    transform: translateY(0);
}

.headline-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--white-color);
    background: var(--theme-color);
    padding: 6px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.headline-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 14px;
    line-height: 1.3;
}

.headline-content p {
    font-size: 15px;
    color: var(--white-color);
    line-height: 1.7;
    margin-bottom: 22px;
}

.headline-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
}

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

.headline-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    box-shadow:
        0 0 20px rgba(74, 95, 209, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1),
        0 0 60px rgba(236, 72, 153, 0.08);
}

.headline-link:hover i {
    transform: translateX(5px);
}

/* Navigation - Center Sag Alt */
.headline-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 10;
    background: var(--black-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.headline-pagination-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    padding: 10px 20px;
    min-width: 50px;
    text-align: center;
}

.headline-nav button {
    width: 45px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--white-color);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
/* Slider Info - Sag altta */
.headline-slider-info {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.headline-slider-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-nunito);
}

.headline-slider-counter .current-slide {
    font-size: 38px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
}

.headline-slider-counter .separator {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2px;
}

.headline-slider-counter .total-slides {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

/* Slider Navigation */
.headline-slider-nav {
    display: flex;
    gap: 8px;
}

.headline-slider-nav button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headline-slider-nav button:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    transform: scale(1.05);
}

/* Responsive */
/* ============================================
   SERVICES SECTION - AWS Style Cards
   ============================================ */

.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Services Search */
.services-search {
    flex-shrink: 0;
}

.search-input-wrapper {
    position: relative;
    width: 280px;
}

.search-input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: var(--font-nunito);
    transition: all 0.2s ease;
    background: #fff;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(102, 128, 255, 0.1);
}

.search-input-wrapper input::placeholder {
    color: #9ca3af;
}

/* Search Loader */
.search-loader {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #e9ebed;
    border-top-color: var(--theme-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    animation: spin 0.8s linear infinite;
    transition: opacity 0.2s ease;
}

.search-loader.active {
    opacity: 1;
    visibility: visible;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--paragraph-color);
}

.no-results i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
    color: var(--paragraph-color);
}

.no-results p {
    font-size: 16px;
    margin: 0;
    color: var(--paragraph-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Service Card */
.service-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--body-color);
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.service-card:hover .service-card-video {
    opacity: 1;
}

.service-card:has(.service-card-video):hover .service-card-content {
    position: relative;
    z-index: 1;
}

.service-card:has(.service-card-video):hover .service-title,
.service-card:has(.service-card-video):hover .service-desc,
.service-card:has(.service-card-video):hover .link-text,
.service-card:has(.service-card-video):hover .service-arrow {
    color: #fff;
}

.service-card:has(.service-card-video):hover .service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.service-card:hover {
    box-shadow:
        0 0 20px rgba(74, 95, 209, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1),
        0 0 60px rgba(236, 72, 153, 0.08);
    transform: translateY(-4px);
}

.service-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-header {
    margin-bottom: 12px;
}

.service-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    color: var(--theme-color);
    background: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding: 5px;
    border-radius: var(--border-radius);
    line-height: 1.2;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #16191f;
    margin: 0;
    line-height: 1.4;
}

.service-card:hover .service-title {
    color: var(--theme-color);
}

.service-desc {
    font-size: 13px !important;
    color: #5f6b7a;
    line-height: 1.6;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    overflow: hidden;
}

.service-link > span:first-child {
    display: inline-block;
}
.service-link i {
    margin-left: 10px;
    color: #fff;
}

.service-arrow {
    display: flex;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.service-arrow svg {
    width: 16px;
    height: 16px;
}

.service-card:hover .service-arrow i {
    transform: translateX(0);
    color: #fff !important;
}

/* Solutions Page & Card */
.solutions-page {
    padding: 80px 0;
    background: #fff;
}

.solution-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--body-color);
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.4s ease;
    height: 100%;
}

.solution-card:hover {
    box-shadow:
        0 0 20px rgba(74, 95, 209, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1),
        0 0 60px rgba(236, 72, 153, 0.08);
    transform: translateY(-4px);
}

.solution-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card-header {
    margin-bottom: 12px;
}

.solution-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    color: var(--theme-color);
    background: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding: 5px;
    border-radius: var(--border-radius);
    line-height: 1.2;
}

.solution-title {
    font-size: 18px;
    font-weight: 700;
    color: #16191f;
    margin: 0;
    line-height: 1.4;
}

.solution-card:hover .solution-title {
    color: var(--theme-color);
}

.solution-desc {
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.6;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.solution-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    overflow: hidden;
}

.solution-link > span:first-child {
    display: inline-block;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-40px);
    width: 0;
    margin-right: 0;
    overflow: hidden;
}

.solution-card:hover .solution-link > span:first-child {
    transform: translateX(0);
    width: auto;
    margin-right: 8px;
}

.solution-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0);
}

.solution-card:hover .solution-arrow {
    transform: translateX(0);
}

/* Responsive */
/* Related Services Section */
.related-services {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-color);
    background: rgba(var(--theme-color-rgb), 0.08);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Footer Card - Grid Ä°Ã§inde */
.services-footer-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
    border: 1px dashed var(--theme-color);
    border-radius: var(--border-radius);
    height: 100%;
    min-height: 180px;
    transition: 0.3s ease-in;
}

.services-footer-card:hover {
    box-shadow:
        0 0 20px rgba(74, 95, 209, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1),
        0 0 60px rgba(236, 72, 153, 0.08);
}
.services-footer-card:hover .btn-view-all:hover i {
    transform: translateX(4px);
}

.services-footer-card .services-footer-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--theme-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
}

.btn-view-all:hover {
    background: var(--theme-color);
    box-shadow:
        0 0 20px rgba(74, 95, 209, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1),
        0 0 60px rgba(236, 72, 153, 0.08);
    color: var(--white-color);
}

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

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   BLOG PREVIEW - AWS DeluxeCard Style
   ============================================ */

.blog-preview-section {
    padding: 80px 0;
    background: #fff;
}

/* Blog Grid - 2li layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blog-card-item {
    display: flex;
}

.blog-deluxe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

/* Featured Card - Sol tarafta bÃ¼yÃ¼k (2 row span) */
.blog-deluxe-card.blog-deluxe-featured {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Normal Cards */
.blog-deluxe-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    display: block;
    height: 280px;
    transition: all 0.4s ease;
}

.blog-deluxe-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blog-deluxe-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-deluxe-card:hover .blog-deluxe-bg img {
    transform: scale(1.08);
}

.blog-deluxe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
    transition: background 0.3s ease;
}

.blog-deluxe-card:hover .blog-deluxe-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.blog-deluxe-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.blog-deluxe-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--white-color);
    background: var(--theme-color);
    padding: 5px 12px;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-deluxe-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-deluxe-featured .blog-deluxe-title {
    font-size: 22px;
}

.blog-deluxe-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.blog-deluxe-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-deluxe-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.blog-deluxe-meta i {
    font-size: 12px;
}

.blog-deluxe-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 14px;
    z-index: 2;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.blog-deluxe-card:hover .blog-deluxe-arrow {
    opacity: 1;
    transform: translateX(0);
}

.blog-deluxe-arrow:hover {
    background: var(--theme-color);
}

/* Blog Deluxe Card - Mata Button 1 Hover Effect */
.blog-deluxe-card.mata-btn-1:hover {
    box-shadow:
        0 0 20px rgba(102, 128, 255, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(236, 72, 153, 0.2);
    transform: translateY(-6px);
}

/* Blog Preview Footer */
.blog-preview-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Responsive */
/* ============================================
   REFERENCES - Dual Marquee
   ============================================ */

.references-section {
    padding: 80px 0;
    overflow: hidden;
}

/* Swiper References & Partners */
.references-swiper-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.references-swiper-rtl,
.references-swiper-ltr,
.partners-swiper-rtl,
.partners-swiper-ltr {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.references-swiper-rtl .swiper-slide,
.references-swiper-ltr .swiper-slide,
.partners-swiper-rtl .swiper-slide,
.partners-swiper-ltr .swiper-slide {
    width: auto;
}

/* Eski Marquee (geriye uyumluluk) */
.references-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.references-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.references-marquee {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
}

/* SaÄŸdan Sola - RTL */
.marquee-rtl {
    animation: marquee-rtl 50s linear infinite;
}

/* Soldan SaÄŸa - LTR */
.marquee-ltr {
    animation: marquee-ltr 50s linear infinite;
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.reference-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 150px;
    height: 80px;
}

.reference-item:hover {
    transform: scale(1.05);
}

.reference-item img {
    height: 50px !important;
    width: 70px !important;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Hover'da durdur */
.references-marquee-wrapper:hover .references-marquee {
    animation-play-state: paused;
}

/* Responsive */
/* ============================================
   CTA SECTION - Two Boxes
   ============================================ */

.cta-section {
    padding: 80px 0;
    background: #fff;
}

.cta-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cta-box {
    display: block;
    height: 450px;
    border-radius: var(--border-radius);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #1a1a2e;
}

/* Video Background */
.cta-box-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.cta-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    transition: background 0.4s ease;
}

.cta-box:hover .cta-box-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.cta-box:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Inner Content - Vertical Layout */
.cta-box-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
    text-align: left;
}
.cta-box-inner p {
    color: var(--white-color);
}

.cta-box-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cta-box:hover .cta-box-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.cta-box-icon i {
    font-size: 36px;
    color: var(--white-color);
}

.cta-box-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 16px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-box-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
    line-height: 1.7;
    max-width: 350px;
}

.cta-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--theme-color);
    color: var(--white-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.cta-box-btn i {
    transition: transform 0.3s ease;
}

.cta-box:hover .cta-box-btn {
    background: var(--theme-color);
    color: var(--white-color);
    box-shadow:
        0 0 20px rgba(74, 95, 209, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1),
        0 0 60px rgba(236, 72, 153, 0.08);
}

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

/* Responsive */
/* ============================================
   FAQs SECTION - AWS STYLE
   ============================================ */

.faqs-section {
    padding: 100px 0;
    background: #ffffff;
}

.faqs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side - Title & Features */
.faqs-left {
    position: sticky;
    top: 120px;
}

.faqs-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--theme-color);
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-nunito);
}

.faqs-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--black-color2);
    line-height: 1.2;
    margin: 0 0 24px 0;
    font-family: var(--font-nunito);
}

.faqs-desc {
    font-size: 18px;
    color: var(--black-soft-color);
    line-height: 1.6;
    margin: 0 0 48px 0;
    font-weight: 400;
}

.faqs-features {
    display: none;
}

.faqs-feature {
    display: none;
}

.faqs-feature-icon {
    display: none;
}

.faqs-feature-icon i {
    display: none;
}

.faqs-feature span {
    display: none;
}

.faqs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--theme-color);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-nunito);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--theme-color);
}

.faqs-cta-btn:hover {
    background: transparent;
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.faqs-cta-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.faqs-cta-btn:hover i {
    transform: translateX(3px);
}

/* Right Side - FAQ Accordion */
.faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--gray-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    box-shadow: none;
    background: transparent;
}

.faq-item.active {
    box-shadow: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color2);
    transition: color 0.2s ease;
    text-align: left;
}

.faq-item.active .faq-question span {
    color: var(--theme-color);
    font-weight: 600;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.faq-item.active .faq-icon {
    background: transparent;
}

.faq-icon i {
    font-size: 16px;
    color: var(--theme-color);
    position: absolute;
    transition: all 0.2s ease;
    font-weight: 700;
}

.faq-item.active .faq-icon i {
    color: var(--theme-color);
}

.faq-icon .fa-plus {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.faq-icon .fa-minus {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item.active .faq-icon .fa-plus {
    opacity: 0;
}

.faq-item.active .faq-icon .fa-minus {
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    margin: 0;
    font-size: 15px;
    color: var(--black-soft-color);
    line-height: 1.7;
}

/* Responsive */
/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    background: linear-gradient(135deg, var(--theme-color) 0%, #0d1025 100%);
    padding: 0px;
    position: relative;
    overflow: hidden;
}

/* .newsletter-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
} */

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 28px;
    color: var(--white-color);
}

.newsletter-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 6px 0;
}

.newsletter-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-input-wrapper input {
    flex: 1;
    min-width: 280px;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: var(--font-nunito);
    color: var(--paragraph-color);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper input::placeholder {
    color: #999;
}

.newsletter-input-wrapper input:focus {
    color: var(--theme-color);
}

.newsletter-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 12px 0 0 0;
    text-align: right;
}

/* Newsletter Responsive */
/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
    background: #0d1025;
    padding-top: 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Footer Logo & Newsletter */
.footer-logo-newsletter {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-text {
    flex: 1;
}

.footer-logo {
    display: inline-block;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-newsletter-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.footer-newsletter-desc {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.footer-desc {
    display: none;
}

/* Footer Newsletter Wrapper */
.footer-newsletter-wrapper {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

/* Footer Newsletter Form */
.footer-newsletter-form {
    width: 100%;
}

.footer-newsletter-input {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-newsletter-input:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-input input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--white-color);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-input input:focus {
    color: var(--white-color);
}

.footer-newsletter-input button {
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--white-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter-input button:hover {
    color: var(--theme-color);
}

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

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

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

/* Footer Social Full Width - Hidden */
.footer-social-full {
    display: none;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 25px 0;
    position: relative;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    font-size: 14px;
    color: var(--white-color);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 8px;
}

/* Footer Contact */
.footer-contact ul li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact ul li:last-child {
    margin-bottom: 0;
}

.footer-contact ul li .contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.footer-contact ul li .contact-icon i {
    font-size: 14px;
    color: var(--white-color);
    opacity: 0.9;
}

.footer-contact ul li a {
    font-size: 14px;
    color: var(--white-color);
    opacity: 0.7;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: none;
}

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

.copyright {
    display: none;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--white-color);
    opacity: 0.7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* Footer Partner Badges */
.footer-partner-badges {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
    gap: 15px;
    width: 100%;
}

.footer-partner-badges a {
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    width: 100%;
}

.footer-partner-badges a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-partner-badges img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Footer Bottom Social */
.footer-bottom-social {
    display: flex;
    gap: 16px;
}

.footer-bottom-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--white-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-social a:hover {
    background: var(--theme-color);
    transform: translateY(-3px);
}

/* Footer Responsive */
/* ==================== Projects Preview Section ==================== */
.projects-preview-section {
    padding: 80px 0;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

/* Featured Card - Sol tarafta bÃ¼yÃ¼k (2 row span) */
.project-card.project-featured {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Normal Cards */
.project-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
    min-height: 280px;
    height: 100%;
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.project-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-bg img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
    transition: background 0.3s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.project-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--white-color);
    background: var(--theme-color);
    padding: 5px 12px;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.project-featured .project-title {
    font-size: 22px;
}

.project-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.project-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 14px;
    z-index: 2;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.project-card:hover .project-arrow {
    opacity: 1;
    transform: translateX(0);
    box-shadow:
        0 0 20px rgba(74, 95, 209, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1),
        0 0 60px rgba(236, 72, 153, 0.08);
}

.project-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Projects Preview Footer */
.projects-preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.projects-notification {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(
        135deg,
        rgba(74, 95, 209, 0.08) 0%,
        rgba(139, 92, 246, 0.08) 100%
    );
    border-radius: 50px;
    border: 1px solid rgba(74, 95, 209, 0.15);
}

.projects-notification i {
    color: var(--theme-color);
    font-size: 16px;
}

.projects-notification span {
    font-size: 14px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.projects-swiper .swiper-slide {
    height: auto;
}

.projects-swiper .project-card {
    height: 100%;
    min-height: 280px;
}

/* Projects Pagination - 10x10 Dots */
.projects-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    width: auto !important;
}

.projects-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #d1d5db;
    opacity: 1;
    border-radius: 7px;
    transition: all 0.3s ease;
    padding: 4px;
    margin: 0 4px;
}

.projects-pagination .swiper-pagination-bullet-active {
    width: 20px !important;
    border-radius: 7px;
    background: var(--theme-color);
    padding: 2px;
}

@media (max-width: 767.98px) {
    .projects-preview-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .projects-notification {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive */
/* ============================================
   STANDARD PAGE CONTENT - Corporate, Legal, etc.
   ============================================ */

.standard-page-section {
    padding: 80px 0;
    background: #fff;
}

.standard-page-content {
    max-width: 900px;
}

.standard-page-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 24px;
}

.standard-page-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 32px 0 16px 0;
}

.standard-page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color2);
    margin: 24px 0 12px 0;
}

.standard-page-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color2);
    margin: 20px 0 10px 0;
}

.standard-page-content p {
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.standard-page-content ul,
.standard-page-content ol {
    margin: 16px 0 16px 24px;
    color: var(--paragraph-color);
}

.standard-page-content ul li,
.standard-page-content ol li {
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.standard-page-content ol li {
    list-style: decimal;
}

.standard-page-content a {
    color: var(--theme-color);
    text-decoration: underline;
}

.standard-page-content a:hover {
    color: #4a5fd1;
}

.standard-page-content blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: var(--gray-color);
    border-left: 4px solid var(--theme-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.standard-page-content blockquote p {
    margin: 0;
    font-style: italic;
}

.standard-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 16px 0;
}

.standard-page-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.standard-page-content table th,
.standard-page-content table td {
    padding: 12px 16px;
    border: 1px solid #e9ebed;
    text-align: left;
}

.standard-page-content table th {
    background: var(--gray-color);
    font-weight: 600;
    color: var(--black-color2);
}

.standard-page-content table td {
    color: var(--paragraph-color);
}

/* Page Meta - Last Updated */
.page-meta {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ebed;
}

.page-meta span {
    font-size: 14px;
    color: var(--black-soft-color);
}

/* Responsive */
/* ============================================
   BREADCRUMB - Inner Page Header
   ============================================ */

.breadcrumb-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1025 0%, #1a1f3c 100%);
    overflow: hidden;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-color);
    background: var(--white-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: var(--theme-color);
}

.breadcrumb-nav span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
/* ============================================
   ABOUT US PAGE - HakkÄ±mÄ±zda
   ============================================ */

.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-intro-content p {
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-intro-image::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--theme-color);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.2;
}

/* About Features Grid */
.about-features-section {
    padding: 80px 0;
    background: #fff;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.about-feature-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: var(--white-color);
    border: 2px solid #e9ebed;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card:hover {
    border-color: var(--theme-color);
    box-shadow:
        0 0 20px rgba(74, 95, 209, 0.15),
        0 0 40px rgba(139, 92, 246, 0.08),
        0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.about-feature-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-feature-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--theme-color-rgb), 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
    background: rgba(var(--theme-color-rgb), 0.15);
    transform: scale(1.05);
}

.about-feature-icon i {
    font-size: 28px;
    color: var(--theme-color);
    transition: color 0.3s ease;
}

.about-feature-card:hover .about-feature-icon i {
    color: var(--theme-color);
}

.about-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0;
    line-height: 1.4;
}

.about-feature-card:hover .about-feature-title {
    color: var(--theme-color);
}

.about-feature-desc {
    font-size: 14px;
    color: var(--paragraph-color);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: var(--body-color);
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
}

.about-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    border: 1px solid #e9ebed;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--theme-color);
}

.about-stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--theme-color);
    line-height: 1;
    margin-bottom: 12px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--paragraph-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive */
/* ============================================
   CTA CONTACT - Contact Banner
   ============================================ */

.cta-contact-section {
    position: relative;
    background: linear-gradient(135deg, #0d1025 65%, #fff 35%);
    overflow: hidden;
}

.cta-contact-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.cta-contact-visual {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-contact-content {
    flex: 1;
    max-width: 600px;
}

.cta-contact-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-color);
    background: var(--white-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-contact-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.cta-contact-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.cta-contact-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.cta-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-nunito);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-contact-btn.btn-primary {
    background: var(--theme-color);
    color: var(--white-color);
}

.cta-contact-btn.btn-primary:hover {
    background: var(--theme-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--theme-color-rgb), 0.4);
    color: var(--white-color);
}

.cta-contact-btn.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
}

.cta-contact-btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white-color);
}

.cta-contact-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

.cta-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cta-contact-info i {
    color: var(--theme-color);
}

/* Responsive */

/* Content Background Mascots - Sayfa içeriği arkasında */
.content-mascots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.content-mascot {
    position: absolute;
    width: 180px;
    height: auto;
    opacity: 0.05;
}

/* Mascot pozisyonları - içerik arkasına serpiştirilmiş */
.mascot-1 {
    left: -80px;
    top: 50px;
    transform: rotate(-12deg);
}

.mascot-2 {
    right: -70px;
    top: 200px;
    transform: rotate(8deg);
}

.mascot-3 {
    left: -60px;
    top: 500px;
    transform: rotate(5deg);
}

.mascot-4 {
    right: -90px;
    top: 700px;
    transform: rotate(-8deg);
}

.mascot-5 {
    left: -70px;
    top: 950px;
    transform: rotate(-5deg);
}

.mascot-6 {
    right: -60px;
    top: 1150px;
    transform: rotate(10deg);
}

@media (max-width: 1400px) {
    .content-mascot {
        width: 140px;
        opacity: 0.04;
    }
    .mascot-1,
    .mascot-3,
    .mascot-5 {
        left: -60px;
    }
    .mascot-2,
    .mascot-4,
    .mascot-6 {
        right: -50px;
    }
}

@media (max-width: 1200px) {
    .content-mascots {
        display: none;
    }
}

/* Solution Details Section */
.solution-details {
    padding: 0px;
    background: #fff;
    position: relative;
    overflow: visible;
}

.solution-details > .container {
    position: relative;
}

.solution-details .row {
    position: relative;
    z-index: 2;
}

/* Solution Sidebar */
.solution-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Solution Sidebar Image */
.solution-sidebar-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.solution-sidebar-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Solution Media Split - Diagonal bölme */
.solution-media-split {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 300px;
    margin-bottom: 30px;
}

.solution-media-split .solution-media-img,
.solution-media-split .solution-media-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .solution-media-split {
        height: 200px;
    }
}

/* Solution Float Image - text wraps around */
.solution-float-image {
    float: right;
    max-width: 400px;
    width: 40%;
    margin: 0 0 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .solution-float-image {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
    }
}

/* Solution Menu List - detail-item style */
.solution-menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.solution-menu-list .mata-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    border: none;
}

.solution-menu-list .mata-btn:hover {
    background: var(--gray-color);
}

.solution-menu-list .mata-btn.active {
    background: var(--theme-color);
}

.solution-menu-list .mata-btn .solution-menu-content h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--black-color);
    margin: 0;
    transition: color 0.2s ease;
}

.solution-menu-list .mata-btn:hover .solution-menu-content h6 {
    color: var(--theme-color);
}

.solution-menu-list .mata-btn.active .solution-menu-content h6 {
    color: #fff;
}

.solution-menu-list .mata-btn .solution-menu-arrow {
    font-size: 12px;
    color: var(--paragraph-color);
    opacity: 0;
    transition: all 0.2s ease;
    transform: translateX(-5px);
}

.solution-menu-list .mata-btn:hover .solution-menu-arrow {
    opacity: 1;
    color: var(--theme-color);
    transform: translateX(0);
}

.solution-menu-list .mata-btn.active .solution-menu-arrow {
    opacity: 1;
    color: #fff;
    transform: translateX(0);
}

.solution-detail-text {
    display: flex;
    flex-direction: column;
}

.solution-detail-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--black-color2);
    line-height: 1.3;
    margin: 0;
}

.solution-detail-text > p {
    font-size: 15px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0;
}

.solution-detail-text > * {
    margin: 0;
}

.solution-detail-text h3,
.solution-detail-text h4,
.solution-detail-text h5 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--black-color2);
    line-height: 1.4;
    font-weight: 700;
}

.solution-detail-text h3 {
    font-size: 24px;
}

.solution-detail-text h4 {
    font-size: 20px;
}

.solution-detail-text h5 {
    font-size: 18px;
}

.solution-detail-text ul,
.solution-detail-text ol {
    margin: 12px 0;
    padding-left: 20px;
}

.solution-detail-text li {
    margin-bottom: 8px;
    color: var(--paragraph-color);
    line-height: 1.6;
    font-size: 15px;
}

/* Sidebar Accordion - Mobile Only */
.sidebar-accordion-toggle {
    display: none;
    width: 100%;
    background: none;
    border: none;
    padding: 14px 16px;
    cursor: pointer;
    align-items: center;
    gap: 12px;
}

.sidebar-accordion-toggle span {
    flex: 1;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: var(--black-color);
}

.sidebar-accordion-icon-left {
    font-size: 16px;
    color: var(--theme-color);
}

.sidebar-accordion-icon {
    font-size: 12px;
    color: var(--black-soft-color);
    transition: transform 0.3s ease;
}

.sidebar-accordion.open .sidebar-accordion-icon {
    transform: rotate(180deg);
}

.sidebar-accordion-content {
    padding: 0 16px 16px;
}

/* Contact Info Widget in Sidebar */
.contact-info-widget .blog-widget-title {
    padding: 16px 16px 0;
}

.contact-info-widget .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.contact-info-widget .contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-widget .info-icon {
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-widget .info-icon i {
    color: #fff;
    font-size: 16px;
}

.contact-info-widget .info-content h6 {
    font-size: 12px;
    font-weight: 600;
    color: var(--black-soft-color);
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-widget .info-link {
    font-size: 14px;
    color: var(--black-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-info-widget .info-link:hover {
    color: var(--theme-color);
}

.contact-info-widget .mata-btn-1 {
    margin: 0 16px 16px;
    width: calc(100% - 32px);
}

/* Mobile Sidebar Accordion */
@media (max-width: 991.98px) {
    .solution-sidebar {
        position: relative;
        top: 0;
    }

    .sidebar-accordion {
        border-radius: var(--border-radius);
        overflow: hidden;
        background: var(--body-color);
    }

    .sidebar-accordion-toggle {
        display: flex;
        background: var(--body-color);
    }

    .sidebar-accordion-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 16px;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
    }

    .sidebar-accordion.open .sidebar-accordion-content {
        max-height: 1000px;
        padding: 0 16px 16px;
    }
}

/* Project Details Page */
.project-details {
    padding: 80px 0;
    background: #fff;
}

.project-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-details-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.project-details-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Project Gallery Section */
.project-gallery-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.project-gallery-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 20px;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.project-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

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

.project-gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: #fff;
    font-size: 24px;
}

@media (max-width: 767.98px) {
    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .project-gallery-title {
        font-size: 18px;
    }
}

.project-details-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-details-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-details-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-details-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color2);
    line-height: 1.3;
    margin: 0;
}

.project-details-desc {
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 1.7;
    margin: 0;
}

.project-details-body {
    font-size: 15px;
    color: var(--paragraph-color);
    line-height: 1.7;
}

.project-details-body h2,
.project-details-body h3,
.project-details-body h4 {
    color: var(--black-color2);
    margin-top: 24px;
    margin-bottom: 12px;
}

.project-details-body p {
    margin-bottom: 16px;
}

.project-details-body ul,
.project-details-body ol {
    margin: 12px 0;
    padding-left: 20px;
}

.project-details-body li {
    margin-bottom: 8px;
}

/* Project Info List */
.project-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-info-item .info-icon {
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-info-item .info-icon i {
    color: #fff;
    font-size: 16px;
}

.project-info-item .info-content h6 {
    font-size: 12px;
    font-weight: 600;
    color: var(--black-soft-color);
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-info-item .info-content p {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 991.98px) {
    .project-sidebar {
        position: relative;
        top: 0;
    }

    .project-details-title {
        font-size: 26px;
    }
}

/* Projects Page */
.projects-page {
    padding: 80px 0;
    background: #fff;
}

/* Project Card */
.project-card {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.08);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-card-badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.project-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.project-card:hover .project-card-title {
    color: var(--theme-color);
}

.project-card-desc {
    font-size: 14px;
    color: var(--paragraph-color);
    margin: 0;
    line-height: 1.5;
}

.project-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.project-card-arrow i {
    color: #fff;
    font-size: 14px;
}

.project-card:hover .project-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767.98px) {
    .project-card-image {
        height: 180px;
    }

    .project-card-title {
        font-size: 16px;
    }
}

/* References Page */
.references-page {
    background: #fff;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.reference-card {
    background: #fff;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    border: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Her 4. eleman (saÄŸdaki) saÄŸ border yok */
.reference-card:nth-child(4n) {
    border-right: 0;
}

.reference-card:hover {
    background: rgba(74, 95, 209, 0.03);
}

.reference-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.reference-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reference-card:nth-child(4n) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .reference-card:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 767.98px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reference-card {
        height: 100px;
        padding: 20px;
    }

    .reference-card:nth-child(3n) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .reference-card:nth-child(2n) {
        border-right: 0;
    }

    .reference-card img {
        max-height: 50px;
    }
}

/* Solution Extra Section (KVKK) */
.solution-extra {
    padding: 80px 0;
    background: #fff;
}

.solution-kvkk-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-kvkk-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color2);
    line-height: 1.3;
    margin: 0;
}

.solution-kvkk-content p {
    font-size: 15px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0;
}

/* Solution Works Section */
.solution-works {
    padding: 80px 0;
    background: #fff;
}

.solution-works h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--black-color2);
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.solution-works > p {
    color: var(--paragraph-color);
    font-size: 15px;
    line-height: 1.6;
}

.solution-works h3,
.solution-works h4,
.solution-works h5 {
    color: var(--black-color2);
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.solution-works h3 {
    font-size: 24px;
}

.solution-works h4 {
    font-size: 20px;
}

.solution-works ul,
.solution-works ol {
    margin: 12px 0;
    padding-left: 20px;
}

.solution-works li {
    margin-bottom: 8px;
    color: var(--paragraph-color);
    line-height: 1.6;
    font-size: 15px;
}

/* Related Solutions Section */
.related-solutions {
    padding: 80px 0;
    background: #fff;
}

.related-solutions .section-header {
    margin-bottom: 50px;
}

.related-solutions .section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.related-solutions .section-desc {
    font-size: 15px;
    color: var(--paragraph-color);
    margin: 0;
    max-width: 100% !important;
}

/* Solution Children Section */
.solution-children {
    padding: 80px 0;
    background: #fff;
}

.solution-children .section-header {
    margin-bottom: 50px;
}

.solution-children .section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

/* Responsive - Tablet */
/* Responsive - Small Mobile */
/* Mata Desk Section */
.mata-desk {
    padding: 30px 0;
    background: #fff;
}

.mata-desk-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mata-desk-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--black-color2);
    line-height: 1.3;
    margin: 0;
}

.mata-desk-content > p {
    font-size: 15px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0;
}

/* Mata Desk Tabs */
.mata-desk-tabs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mata-desk-tab-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mata-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--paragraph-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-nunito);
}

.mata-tab-btn:hover {
    border-color: var(--theme-color);
    background: rgba(var(--theme-color-rgb), 0.05);
}

.mata-tab-btn.active {
    background: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}

.mata-os-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mata-tab-content {
    display: none;
    padding: 28px;
    background: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #e9e9e9;
    animation: fadeIn 0.3s ease;
}

.mata-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mata-tab-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 16px 0;
}

.mata-tab-content p {
    font-size: 15px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.mata-download-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.mata-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--theme-color);
    color: var(--white-color);
    border: 2px solid var(--theme-color);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-nunito);
}

.mata-download-btn:hover {
    background: transparent;
    color: var(--theme-color);
}

.mata-download-btn i {
    font-size: 16px;
}

/* Responsive - Tablet */
/* Responsive - Mobile */
/* Blog Page Section */
.blog-page {
    padding: 80px 0;
    background: #fff;
}

.blog-header {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.blog-search-input {
    width: 100%;
    max-width: 400px;
}

.blog-card-item {
    display: flex;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.blog-card:hover {
    border-color: var(--theme-color);
    box-shadow:
        0 0 20px rgba(102, 128, 255, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(236, 72, 153, 0.2);
    transform: translateY(-6px);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-color);
    background: rgba(var(--theme-color-rgb), 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #9ca3af;
}

.blog-card-date,
.blog-card-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-date i,
.blog-card-views i {
    font-size: 12px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color2);
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

.blog-card:hover .blog-card-title {
    color: var(--theme-color);
}

.blog-card-desc {
    font-size: 14px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color);
    overflow: hidden;
}

.blog-card-link > span:first-child {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-30px);
    width: 0;
    margin-right: 0;
    overflow: hidden;
}

.blog-card:hover .blog-card-link > span:first-child {
    transform: translateX(0);
    width: auto;
    margin-right: 8px;
}

.blog-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0);
}

.blog-card:hover .blog-card-arrow {
    transform: translateX(4px);
}

/* Responsive - Tablet */
/* Responsive - Mobile */
/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.blog-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

@media (max-width: 991.98px) {
    .blog-sidebar,
    .blog-details-sidebar {
        position: relative;
        top: 0;
    }

    .blog-sidebar .sidebar-accordion,
    .blog-details-sidebar .sidebar-accordion {
        border-radius: var(--border-radius);
        overflow: hidden;
        background: var(--body-color);
    }

    .blog-sidebar .sidebar-accordion-toggle,
    .blog-details-sidebar .sidebar-accordion-toggle {
        display: flex;
        background: var(--body-color);
    }

    .blog-sidebar .sidebar-accordion-content,
    .blog-details-sidebar .sidebar-accordion-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 16px;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
    }

    .blog-sidebar .sidebar-accordion.open .sidebar-accordion-content,
    .blog-details-sidebar .sidebar-accordion.open .sidebar-accordion-content {
        max-height: 1000px;
        padding: 0 16px 16px;
    }
}

/* Search Widget */
.blog-search-widget .search-input-wrapper {
    position: relative;
}

.search-loader {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #e9e9e9;
    border-top-color: var(--theme-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-loader.active {
    opacity: 1;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Categories Widget */
.blog-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-category-item {
    display: flex;
    align-items: center;
}

.blog-category-link span {
    margin-left: 20px;
}

.blog-category-link:hover {
    color: #ffffff;
}

.blog-category-link:hover .blog-category-count {
    color: rgba(255, 255, 255, 0.9);
}

.blog-category-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Blog Category Active State */
.blog-categories-list .mata-btn-1.active {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.blog-categories-list .mata-btn-1.active span {
    color: #fff;
}

.blog-categories-list .mata-btn-1.active .blog-category-count {
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Filter Active Badge */
.blog-filter-active {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-filter-active .filter-label {
    font-size: 14px;
    color: var(--black-soft-color);
    font-weight: 600;
}

.blog-filter-active .filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.blog-filter-active .filter-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-filter-active .filter-remove:hover {
    background: rgba(255, 255, 255, 0.3);
}

.blog-filter-active .filter-remove i {
    font-size: 10px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: #fff;
    color: var(--black-color2);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pagination a:hover {
    background: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}

.pagination .active span {
    background: var(--theme-color) !important;
    color: var(--white-color);
    border-color: var(--theme-color) !important;
}

.pagination .disabled span {
    color: #9ca3af;
    cursor: not-allowed;
}

/* Responsive */
/* Blog Details Page */
.blog-details-page {
    background: #fff;
    padding-top: 0;
}

.blog-details-page .container {
    padding: 0 15px;
}

.blog-details-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.blog-details-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.blog-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: var(--border-radius);
}

.blog-details-hero:hover .blog-details-image img {
    transform: scale(1.02);
}

.blog-details-content {
    background: #fff;
}

.blog-details-meta-top {
    margin-bottom: 16px;
}

.blog-details-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 6px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-details-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--black-color2);
    line-height: 1.4;
    letter-spacing: -0.5px;
    margin: 28px 0 24px 0;
    word-wrap: break-word;
}

.blog-details-meta {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-details-meta:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.author-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background: var(--black-color2);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.author-info h6 {
    font-size: 11px;
    font-weight: 700;
    color: var(--black-soft-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-info p {
    font-size: 15px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 6px 0 0 0;
}

.meta-items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: var(--paragraph-color);
}

.meta-item > div {
    display: flex;
    flex-direction: column;
}

.meta-item h6 {
    font-size: 11px;
    font-weight: 700;
    color: var(--black-soft-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color2);
    margin-top: 10px;
    display: inline-block;
}

.meta-item i {
    color: var(--theme-color);
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.blog-details-body {
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 1.9;
    letter-spacing: 0.2px;
    margin-bottom: 40px;
}

.blog-details-body p {
    margin-bottom: 20px;
    color: var(--paragraph-color);
}

.blog-details-body h2,
.blog-details-body h3,
.blog-details-body h4 {
    color: var(--black-color2);
    margin: 32px 0 20px 0;
    font-weight: 700;
    line-height: 1.4;
}

.blog-details-body h2 {
    font-size: 28px;
}

.blog-details-body h3 {
    font-size: 24px;
}

.blog-details-body h4 {
    font-size: 20px;
}

.blog-details-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 28px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.blog-details-body img:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-details-tags {
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    margin-top: 32px;
}

.blog-details-tags h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-block;
    padding: 8px 14px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--black-color2);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tag-item:hover {
    background: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--theme-color-rgb), 0.2);
}

/* Blog Details Sidebar */
.blog-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.blog-widget {
    background: var(--body-color);
    border: 1px solid var(--body-color);
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.blog-details-widget {
    background: #fff;
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.blog-details-widget:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Blog Details Sidebar - Solution Style */
.blog-details-sidebar .blog-categories-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-details-sidebar .blog-category-item .mata-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
}

.blog-details-sidebar .blog-category-item .mata-btn:hover {
    background: var(--gray-color);
}

.blog-details-sidebar .blog-category-item .mata-btn.active {
    background: var(--theme-color);
}

.blog-details-sidebar .blog-category-item .mata-btn span {
    font-size: 13px;
    font-weight: 600;
    color: var(--black-color);
    transition: color 0.2s ease;
}

.blog-details-sidebar .blog-category-item .mata-btn:hover span {
    color: var(--theme-color);
}

.blog-details-sidebar .blog-category-item .mata-btn.active span {
    color: #fff;
}

.blog-details-sidebar .blog-category-item .mata-btn .blog-category-count {
    font-size: 12px;
    color: var(--black-soft-color);
    font-weight: 600;
}

.blog-details-sidebar
    .blog-category-item
    .mata-btn.active
    .blog-category-count {
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Details Recent Posts - Solution Style */
.blog-details-sidebar .recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-details-sidebar .recent-post-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.blog-details-sidebar .recent-post-item:hover {
    background: var(--gray-color);
    transform: translateX(4px);
}

.blog-details-sidebar .recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-details-sidebar .recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-sidebar .recent-post-info h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--black-color);
    margin: 0 0 4px 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.blog-details-sidebar .recent-post-item:hover .recent-post-info h6 {
    color: var(--theme-color);
}

.blog-details-sidebar .recent-post-info .post-date {
    font-size: 11px;
    color: var(--black-soft-color);
}

.blog-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--paragraph-color);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details-widget .blog-widget-title {
    color: var(--black-color2);
}

.blog-details-widget .blog-widget-title i {
    color: var(--theme-color);
    font-size: 16px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--paragraph-color);
    font-size: 14px;
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.blog-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.blog-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.blog-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-category-item {
    margin: 0;
}

.blog-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-category-link:hover {
    color: #ffffff;
}

.blog-category-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.blog-category-link:hover .blog-category-count {
    color: rgba(255, 255, 255, 0.8);
}

.blog-search-form {
    display: flex;
}

.blog-search-form .search-input-wrapper {
    width: 100%;
    position: relative;
}

.blog-search-form .blog-search-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    color: var(--black-color2);
    transition: all 0.3s ease;
}

.blog-search-form .blog-search-input:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(74, 95, 209, 0.1);
}

.blog-search-form .search-input-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
}

/* Recent Posts List */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recent-post-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.recent-post-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(2px);
}

.recent-post-image {
    width: 55px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.recent-post-info h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--paragraph-color);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-date {
    font-size: 11px;
    color: var(--paragraph-color);
}

/* Responsive */
/* ============================================
   CONTACT CTA SECTION
   ============================================ */

.contact-cta-section {
    padding: 40px 0;
    background: #fff;
}

.contact-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--theme-color);
    border-radius: var(--border-radius);
    padding: 40px 50px;
    gap: 30px;
}

.contact-cta-content {
    flex: 1;
}

.contact-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.contact-cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--theme-color);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--theme-color);
}

.contact-cta-btn i {
    font-size: 20px;
}

.contact-cta-box img {
    position: absolute;
    right: 0;
    top: 42%;
    transform: translateY(-50%);
    width: 300px;
    filter: drop-shadow(-2px 3px 2px #fff);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .contact-cta-title {
        font-size: 24px;
    }

    .contact-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page {
    background: #fff;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-title i {
    color: var(--theme-color);
    font-size: 24px;
}

.form-subtitle {
    display: none;
}

/* Form Inner */
.form-inner {
    margin-bottom: 0;
}

.form-inner label {
    display: block;
    font-size: 11px;
    color: var(--black-color2);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-inner input,
.form-inner textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-nunito);
    background: #fff;
    color: var(--paragraph-color);
    transition: all 0.3s ease;
}

.form-inner input::placeholder,
.form-inner textarea::placeholder {
    color: #9ca3af;
}

.form-inner input:focus,
.form-inner textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(102, 128, 255, 0.1);
}

.form-inner textarea {
    resize: vertical;
    font-family: var(--font-nunito);
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-size: 11px;
    font-weight: 700;
    color: var(--black-soft-color);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--paragraph-color);
    text-decoration: none;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--theme-color);
}

.contact-info-item p {
    margin-top: 4px;
}

/* Widget Description */
.widget-desc {
    font-size: 13px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--body-color);
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    color: var(--paragraph-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
    box-shadow: 0 4px 12px rgba(102, 128, 255, 0.3);
    transform: translateY(-2px);
}

/* Success/Error Messages */
.message {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-nunito);
    margin-top: 20px;
    display: none;
    align-items: center;
    gap: 12px;
    animation: slideInUp 0.4s ease;
}

.message i {
    font-size: 18px;
}

.message.success {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.1) 0%,
        rgba(16, 185, 129, 0.05) 100%
    );
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.message.error {
    background: linear-gradient(
        135deg,
        rgba(239, 68, 68, 0.1) 0%,
        rgba(239, 68, 68, 0.05) 100%
    );
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Map */
.contact-map-wrapper {
    background: #fff;
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
}

.map-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-title i {
    color: var(--theme-color);
    font-size: 22px;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--body-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.map-placeholder i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.map-placeholder p {
    color: #9ca3af;
    font-size: 14px;
}

/* Contact Info Widget - Enhanced */
.contact-info-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: var(--border-radius);
    color: var(--white-color);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h6 {
    font-size: 11px;
    font-weight: 700;
    color: var(--black-soft-color);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--paragraph-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.info-link:hover {
    color: var(--theme-color);
}

.info-text {
    font-size: 13px;
    color: var(--paragraph-color);
    margin: 6px 0 0 0;
}

/* Social Widget */
.social-widget {
    margin-bottom: 24px;
}

.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
}

.social-link-btn:hover {
    background: linear-gradient(135deg, #6680ff, #4a5fd1) !important;
    box-shadow: 0 4px 12px rgba(102, 128, 255, 0.3) !important;
}

/* Button with Icon */
.mata-btn i {
    margin-right: 8px;
}

/* ============================================
   ANALYSIS PAGE STYLES
   ============================================ */

.analysis-page {
    background: #fff;
}

/* Analysis Sidebar */
.analysis-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

/* Analysis Info Wrapper */
.analysis-info-wrapper {
    background: #fff;
    margin-bottom: 32px;
}

.analysis-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #6680ff15, #4a5fd115);
    border: 1px solid #6680ff30;
    border-radius: 8px;
    color: var(--theme-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.analysis-badge i {
    font-size: 14px;
}

.analysis-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.analysis-desc {
    font-size: 15px;
    color: var(--paragraph-color);
    line-height: 1.8;
    margin: 0 0 28px 0;
}

/* Analysis Features */
.analysis-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8faff;
    border-radius: 12px;
    border-left: 3px solid var(--theme-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f0f5ff;
    transform: translateX(4px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: 8px;
    color: var(--white-color);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color2);
    margin: 0;
}

/* Analysis Form Wrapper */
.analysis-form-wrapper {
    background: #fff;
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    margin-bottom: 24px;
}

.analysis-form-wrapper:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Process Steps Widget */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6680ff, #4a5fd1);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(102, 128, 255, 0.3);
}

.step-item h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 4px 0;
}

.step-desc {
    font-size: 13px;
    color: var(--paragraph-color);
    margin: 0;
    line-height: 1.5;
}

.step-divider {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--theme-color), transparent);
    margin: 8px 0;
    align-self: center;
}

/* Info Points */
.info-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
}

.point-item:last-child {
    border-bottom: none;
}

.point-item i {
    color: var(--theme-color);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.point-item p {
    font-size: 14px;
    color: var(--paragraph-color);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   Custom Quote Page Styles
   ============================================= */
.custom-quote-page {
    background: #fff;
}

/* Quote Info Wrapper */
.quote-info-wrapper {
    background: #fff;
    margin-bottom: 32px;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(
        135deg,
        rgba(102, 128, 255, 0.1),
        rgba(74, 95, 209, 0.1)
    );
    border: 1px solid rgba(102, 128, 255, 0.2);
    border-radius: 8px;
    color: var(--theme-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.quote-badge i {
    font-size: 14px;
}

.quote-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.quote-desc {
    font-size: 15px;
    color: var(--paragraph-color);
    line-height: 1.8;
    margin: 0 0 28px 0;
}

/* Quote Features */
.quote-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

/* Quote Form Wrapper */
.quote-form-wrapper {
    background: #fff;
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    margin-bottom: 24px;
}

.quote-form-wrapper:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.quote-form-wrapper .form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color2);
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f2f5;
}

.quote-form-wrapper .form-title i {
    color: var(--theme-color);
    font-size: 22px;
}

.quote-form .form-inner label .required {
    color: #ef4444;
    margin-left: 2px;
}

/* Why Choose Widget */
.why-choose-widget {
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
    border: 1px solid rgba(102, 128, 255, 0.15);
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9ebed;
    transition: all 0.3s ease;
}

.why-choose-list li:hover {
    border-color: var(--theme-color);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 128, 255, 0.15);
}

.why-choose-list li i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--theme-color),
        var(--primary-color2)
    );
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.why-choose-list li span {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color2);
}

/* Responsive */
@media (max-width: 991.98px) {
    .quote-title {
        font-size: 24px;
    }

    .quote-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .quote-title {
        font-size: 20px;
    }

    .quote-form-wrapper {
        padding: 16px;
    }

    .why-choose-list li {
        padding: 12px;
    }
}

/* Alert Styles */
.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-nunito);
}

.alert-success {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.1) 0%,
        rgba(16, 185, 129, 0.05) 100%
    );
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.alert-danger {
    background: linear-gradient(
        135deg,
        rgba(239, 68, 68, 0.1) 0%,
        rgba(239, 68, 68, 0.05) 100%
    );
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

/* Service/Product Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--body-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 24px;
}

.sidebar-widget .widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--paragraph-color);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-widget .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget .service-list li {
    margin-bottom: 8px;
}

.sidebar-widget .service-list li:last-child {
    margin-bottom: 0;
}

.sidebar-widget .service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    color: var(--paragraph-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-widget .service-list a:hover {
    background: var(--theme-color);
    color: #fff;
}

.sidebar-widget .service-list a i {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.sidebar-widget .service-list a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Sidebar CTA Widget */
.sidebar-cta {
    background: var(--theme-color);
    border: none;
    text-align: center;
}

.sidebar-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sidebar-cta .cta-content i {
    font-size: 48px;
    color: #fff;
    opacity: 0.9;
}

.sidebar-cta .cta-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.sidebar-cta .cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.sidebar-cta .mata-btn {
    margin-top: 8px;
    background: #fff;
    color: var(--theme-color);
    border: none;
}

.sidebar-cta .mata-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Product Mega Menu Styles */
.product-mega-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.product-mega-image {
    width: 100%;
    max-width: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-mega-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-description {
    font-size: 14px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Product Submenu */
.mobile-product-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 16px;
}

.mobile-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mobile-product-desc {
    font-size: 14px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.mobile-product-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
}

.mobile-product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Category Icon Image in Mega Menu */
.mega-category-item .category-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Brand Icon Image in Index */
.brand-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Product Title Icon in Details */
.product-title-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =================================================================
   SelfProduct Details Page Styles
   ================================================================= */

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.product-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--paragraph-color);
}

.product-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--paragraph-color);
    opacity: 0.85;
}

.service-body {
    color: var(--paragraph-color);
    line-height: 1.8;
}

.service-body h2,
.service-body h3,
.service-body h4 {
    color: var(--paragraph-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.service-body p {
    margin-bottom: 16px;
    color: var(--paragraph-color);
}

.service-body ul,
.service-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--paragraph-color);
}

.service-body li {
    margin-bottom: 8px;
    color: var(--paragraph-color);
}

.service-body span,
.service-body strong,
.service-body em,
.service-body a {
    color: var(--paragraph-color);
}

.service-body a:hover {
    color: var(--theme-color);
}

.service-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

/* Sidebar Styles */
.service-sidebar .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--paragraph-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: var(--paragraph-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-list a:hover {
    background: var(--theme-color);
    color: #fff;
}

.service-list a i {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.service-list a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Widget */
.sidebar-cta {
    background: var(--theme-color);
    border: none;
    text-align: center;
    padding: 30px 24px;
}

.sidebar-cta .cta-content i {
    font-size: 48px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 16px;
}

.sidebar-cta .cta-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sidebar-cta .cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-cta .mata-btn {
    background: #fff;
    color: var(--theme-color);
    border: none;
}

.sidebar-cta .mata-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* SelfProduct Details Responsive */
@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
        text-align: center;
    }

    .product-header h2 {
        font-size: 26px;
    }

    .product-title-icon {
        width: 70px;
        height: 70px;
    }
}

/* ============================================
   FLOATING BUTTONS & LIVE CHAT
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9998;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #1da851;
    color: #fff;
}

.livechat-btn {
    background: transparent;
    position: relative;
}

.livechat-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Badge */
.livechat-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #fff;
    color: var(--paragraph-color);
    font-size: 10px;
    font-weight: 600;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(54, 54, 54, 0.4);
}

/* Pulse animasyonu - Dikkat Ã§ekici */
.livechat-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--theme-color);
    animation: pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Widget aÃ§Ä±ldÄ±ÄŸÄ±nda badge ve pulse gizle */
.livechat-btn.active .livechat-badge,
.livechat-btn.active .livechat-pulse {
    display: none;
}

/* Live Chat Button Wrapper */
.livechat-btn-wrapper {
    position: relative;
}

/* Live Chat Notification Bubble */
.livechat-notification {
    position: absolute;
    bottom: 10px;
    left: calc(100% + 15px);
    background: #fff;
    color: #1a1f2e;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    animation:
        notificationSlideIn 0.5s ease 2s both,
        notificationBounce 2s ease-in-out 2.5s infinite;
    z-index: 9998;
}

.livechat-notification::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: #fff;
    border-left: 0;
}

.livechat-notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    font-size: 12px;
    line-height: 1;
    transition: color 0.2s ease;
}

.livechat-notification-close:hover {
    color: #333;
}

.livechat-notification.hidden {
    display: none !important;
}

@keyframes notificationSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes notificationBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Live Chat Widget */
.livechat-widget {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 320px;
    max-height: 480px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.livechat-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.livechat-header {
    background: var(--theme-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.livechat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.livechat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
}

.livechat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.livechat-header-text h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.livechat-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.livechat-status i {
    font-size: 6px;
    color: #4ade80;
}

.livechat-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.livechat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.livechat-body {
    padding: 16px;
    max-height: 380px;
    overflow-y: auto;
}

.livechat-welcome {
    margin-bottom: 16px;
}

.livechat-bubble {
    background: #f1f3f4;
    padding: 10px 14px;
    border-radius: 12px 12px 12px 4px;
    display: inline-block;
    max-width: 90%;
}

.livechat-bubble p {
    font-size: 12px !important;
    color: var(--paragraph-color);
    margin: 0;
    line-height: 1.5;
}

.livechat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.livechat-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.livechat-form-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--black-color2);
}

.livechat-form-group input,
.livechat-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 12px;
    font-family: var(--font-nunito);
    transition: all 0.2s ease;
    background: #fafafa;
}

.livechat-form-group input:focus,
.livechat-form-group textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    background: #fff;
}

.livechat-form-group textarea {
    resize: none;
}

.livechat-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.livechat-submit:hover {
    background: #1a1f2e;
}

.livechat-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success State */
.livechat-success {
    text-align: center;
    padding: 24px 16px;
}

.livechat-success-animation {
    display: table;
    margin: 0 auto 16px;
}

/* Animated Checkmark */
.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #22c55e;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 #22c55e;
    animation:
        fill 0.4s ease-in-out 0.4s forwards,
        scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #22c55e;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%,
    100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 30px rgba(34, 197, 94, 0.1);
    }
}

.livechat-success h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color2);
    margin: 0 0 6px 0;
}

.livechat-success p {
    font-size: 12px;
    color: var(--black-soft-color);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.livechat-success-time {
    display: inline-block;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--black-soft-color);
}

/* Overlay */
.livechat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.livechat-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 576px) {
    .floating-buttons {
        bottom: 20px;
        left: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .livechat-widget {
        left: 10px;
        right: 10px;
        bottom: 80px;
        width: auto;
        max-height: 70vh;
    }
}

/* ========================================
   SERVER CONFIGURATOR PAGE STYLES
======================================== */

.configurator-wrapper {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

/* Config Sections */
.config-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.config-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.config-section-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.config-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
}

.config-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 5px;
}

.config-title p {
    font-size: 14px;
    color: var(--black-soft-color);
    margin: 0;
}

/* Config Options - Radio Buttons */
.config-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.config-option {
    position: relative;
    cursor: pointer;
}

.config-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.config-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-align: center;
    min-height: auto;
}

.config-option:hover .option-content {
    border-color: #333;
    background: #fafafa;
}

.config-option.selected .option-content,
.config-option input[type="radio"]:checked + .option-content {
    border-color: #333;
    background: #f5f5f5;
    color: #333;
}

.config-option .option-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
}

.config-option .option-spec {
    font-size: 11px;
    opacity: 0.7;
    display: block;
}

/* Config Extras - Checkboxes */
.config-extras {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.config-checkbox {
    position: relative;
    cursor: pointer;
}

.config-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.config-checkbox .checkbox-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.config-checkbox .checkbox-content i {
    font-size: 24px;
    color: #333;
    width: 40px;
    text-align: center;
}

.config-checkbox .checkbox-text {
    flex: 1;
}

.config-checkbox .checkbox-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--black-color);
    display: block;
    margin-bottom: 3px;
}

.config-checkbox .checkbox-desc {
    font-size: 13px;
    color: var(--black-soft-color);
    display: block;
}

.config-checkbox:hover .checkbox-content {
    border-color: var(--theme-color);
    background: #f0f4ff;
}

.config-checkbox.selected .checkbox-content,
.config-checkbox input[type="checkbox"]:checked + .checkbox-content {
    border-color: var(--theme-color);
    background: linear-gradient(
        135deg,
        rgba(15, 20, 27, 0.05) 0%,
        rgba(15, 20, 27, 0.1) 100%
    );
}

.config-checkbox.selected .checkbox-content::after,
.config-checkbox input[type="checkbox"]:checked + .checkbox-content::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* position: absolute;
    right: 20px;
    top: 50%; */
    transform: translateY(-50%);
    color: #28a745;
    font-size: 18px;
}

/* Simple Checkbox - For approval forms */
.simple-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--black-color);
    user-select: none;
}

.simple-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--theme-color);
}

.simple-checkbox input[type="checkbox"]:focus {
    outline: 2px solid var(--theme-color);
    outline-offset: 2px;
}

/* Sistem Diski Checkbox - Compact */
#disk-system-checkbox-container .config-checkbox .checkbox-content,
#secondary-disk-system-checkbox-container .config-checkbox .checkbox-content {
    padding: 12px 15px;
}

#disk-system-checkbox-container .config-checkbox .checkbox-content i,
#secondary-disk-system-checkbox-container .config-checkbox .checkbox-content i {
    font-size: 16px;
    width: 24px;
}

#disk-system-checkbox-container .checkbox-name,
#secondary-disk-system-checkbox-container .checkbox-name {
    font-size: 13px;
    margin-bottom: 0;
}

#disk-system-checkbox-container .checkbox-desc,
#secondary-disk-system-checkbox-container .checkbox-desc {
    display: none;
}

/* Contact Section in Configurator */
.contact-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.contact-section .config-section-header {
    margin-bottom: 25px;
}

/* Submit Button */
.config-submit {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.config-submit .mata-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.config-submit .mata-btn .btn-text {
    transition: transform 0.3s ease;
}

.config-submit .mata-btn .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.config-submit .mata-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.config-submit .mata-btn-reset {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
}

.config-submit .mata-btn-reset .btn-arrow {
    background: rgba(0, 0, 0, 0.05);
}

.config-submit .mata-btn-reset:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.config-submit .mata-btn-reset:hover .btn-arrow {
    background: rgba(var(--primary-rgb), 0.1);
    transform: rotate(-180deg);
}

/* Summary Reset Button */
.summary-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 15px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.summary-reset-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.summary-reset-btn:hover i {
    transform: rotate(-180deg);
}

.summary-reset-btn i {
    transition: transform 0.3s ease;
}

/* Summary Sidebar */
.config-summary-wrapper {
    position: sticky;
    top: 100px;
}

.config-summary {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.summary-header {
    background: var(--theme-color);
    color: var(--white-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-header i {
    font-size: 24px;
}

.summary-header h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.summary-content {
    padding: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.selected {
    background: rgba(15, 20, 27, 0.03);
    margin: 0 -20px;
    padding: 12px 20px;
}

.summary-label {
    font-size: 13px;
    color: var(--black-soft-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-label i {
    font-size: 14px;
    color: var(--theme-color);
}

.summary-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--black-color);
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.summary-extras {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px dashed #eee;
}

.extra-item .summary-label i {
    color: #28a745;
}

.extra-item .summary-value {
    color: #28a745;
    font-weight: 600;
}

.summary-footer {
    padding: 15px 20px;
    background: #f8f9fa;
}

.summary-note {
    font-size: 12px;
    color: var(--black-soft-color);
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.summary-note i {
    color: var(--theme-color);
    margin-top: 2px;
}

/* Quick Info Card */
.config-info-card {
    background: linear-gradient(135deg, var(--theme-color) 0%, #1a2332 100%);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 20px;
    color: var(--white-color);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.info-card-header i {
    font-size: 24px;
}

.info-card-header h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.config-info-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.6;
}

.config-info-card .mata-btn-2 {
    background: var(--white-color);
    color: var(--theme-color);
    width: 100%;
    justify-content: center;
}

.config-info-card .mata-btn-2:hover {
    background: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .config-summary-wrapper {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .config-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .configurator-wrapper {
        padding: 20px;
    }

    .config-section-header {
        flex-direction: column;
        text-align: center;
    }

    .config-icon {
        margin: 0 auto;
    }

    .config-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .config-option .option-content {
        padding: 12px 10px;
        min-height: 70px;
    }

    .config-option .option-name {
        font-size: 12px;
    }

    .config-option .option-spec {
        font-size: 10px;
    }

    .config-checkbox .checkbox-content {
        padding: 15px;
    }

    .summary-header h4 {
        font-size: 14px;
    }

    .summary-label,
    .summary-value {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .config-options {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   CPU Badge / Brand Label
======================================== */
.option-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    color: var(--black-soft-color);
    transition: all 0.3s ease;
}

.config-option input[type="radio"]:checked + .option-content .option-badge,
.config-option.selected .option-badge {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white-color);
}

/* ========================================
   OS Card Icon
======================================== */
.option-icon-large {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--theme-color);
    transition: color 0.3s ease;
}

.config-option input[type="radio"]:checked + .option-content .option-icon-large,
.config-option.selected .option-content .option-icon-large {
    color: var(--white-color);
}

/* ========================================
   vCPU / Core Range Slider
======================================== */
.cores-slider-wrapper {
    padding: 10px 0;
}

.cores-value-display {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.cores-value-display span {
    font-size: 36px;
}

/* Range Slider Track & Thumb */
.config-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: var(--border-radius);
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.config-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--theme-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.config-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.config-range-slider::-webkit-slider-thumb:active {
    background: linear-gradient(135deg, var(--theme-color), #4a5fd1);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(102, 128, 255, 0.4);
}

.config-range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--theme-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.config-range-slider::-moz-range-thumb:active {
    background: linear-gradient(135deg, var(--theme-color), #4a5fd1);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(102, 128, 255, 0.4);
}

/* Cores Progress Bar (under slider) */
.cores-progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin-top: -8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cores-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--theme-color) 0%, #3a7bd5 100%);
    border-radius: 4px;
    width: 0;
    transition: width 0.3s ease;
}

/* Tick Labels */
.cores-labels {
    position: relative;
    height: 30px;
    margin-top: 8px;
}

.cores-tick {
    position: absolute;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--black-soft-color);
}

/* ========================================
   Option Progress Bar (all card types)
======================================== */
.option-progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.option-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--theme-color) 0%, #3a7bd5 100%);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.config-option.selected .option-progress,
.config-option input[type="radio"]:checked + .option-content .option-progress {
    background: rgba(255, 255, 255, 0.2);
}

.config-option.selected .option-progress-fill,
.config-option
    input[type="radio"]:checked
    + .option-content
    .option-progress-fill {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

/* RAM Type Cards */
.ram-type-cards {
    margin-bottom: 15px;
}

/* RAM Slider */
.ram-slider-wrapper {
    padding: 10px 0;
}

.ram-value-display {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.ram-value-display span {
    font-size: 36px;
}

/* ========================================
   Loading Spinner & Empty Message
======================================== */
.config-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    color: var(--theme-color);
    font-size: 15px;
    font-weight: 600;
}

.config-loading i {
    font-size: 20px;
}

.config-empty-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: var(--black-soft-color);
    font-size: 14px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
}

/* ========================================
   Locked Section (Progressive Unlock)
======================================== */
.config-section-locked {
    position: relative;
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.5s ease;
}

.config-section-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(2px);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.config-section-lock-overlay i {
    font-size: 18px;
    color: #adb5bd;
}

.config-section-lock-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

/* Unlocked state */
.config-section:not(.config-section-locked) .config-section-lock-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Unlock animation */
@keyframes sectionUnlock {
    from {
        opacity: 0.45;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.config-section-unlocking {
    animation: sectionUnlock 0.5s ease forwards;
}

/* Highlight pulse on newly unlocked section */
@keyframes unlockPulse {
    0% {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 4px 20px rgba(var(--theme-color-rgb, 0, 123, 255), 0.25);
    }
    100% {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
}

.config-section-pulse {
    animation: unlockPulse 0.8s ease;
}

/* ========================================
   Responsive for new components
======================================== */
@media (max-width: 767px) {
    .cores-value-display {
        font-size: 22px;
    }

    .cores-value-display span {
        font-size: 28px;
    }

    .config-range-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }

    .cores-tick {
        font-size: 10px;
    }

    .config-section-lock-overlay i {
        font-size: 14px;
    }

    .config-section-lock-overlay span {
        font-size: 12px;
    }
}

/* ========================================
   CTA Server Component
======================================== */
.cta-server-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.cta-server-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-server-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-server-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-server-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-server-icon i {
    font-size: 32px;
    color: #fff;
}

.cta-server-text {
    max-width: 450px;
}

.cta-server-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta-server-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.cta-server-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cta-server-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-server-btn-primary {
    background: #fff;
    color: #0a0a0a;
}

.cta-server-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: #0a0a0a;
}

.cta-server-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-server-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.cta-server-btn i {
    font-size: 16px;
}

.arrow-icon {
    display: inline-block;
    margin-left: 10px;
    position: absolute;
    left: -170px;
    top: 0px;
}

.arrow-icon img {
    width: 200px;
    height: 200px;
    transform: rotate(50deg);
}

.arrow-desc-img {
    width: 50px;
    height: 50px;
}

.arrow-related-img {
    width: 400px;
    height: 400px;
    position: absolute;
    top: -173px;
    z-index: 0;
    left: 0%;
    transform: rotate(205deg);
}

/* ============================================
   SHIMMER / SKELETON LAZY LOADING SYSTEM
   ============================================ */

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeInMedia {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Lazy Media Wrapper */
.lazy-media-wrapper {
    position: relative;
    overflow: hidden;
    background: #e8e8e8;
    border-radius: inherit;
}

/* Shimmer Placeholder */
.lazy-media-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #e8e8e8 0%,
        #f4f4f4 25%,
        #f0f0f0 50%,
        #f4f4f4 75%,
        #e8e8e8 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    z-index: 1;
    border-radius: inherit;
    transition: opacity 0.4s ease;
}

/* Hide shimmer when loaded */
.lazy-media-wrapper.loaded::before {
    opacity: 0;
    pointer-events: none;
}

/* Lazy Image/Video Styles */
.lazy-media-wrapper img,
.lazy-media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 2;
    display: block;
}

.lazy-media-wrapper.loaded img,
.lazy-media-wrapper.loaded video {
    opacity: 1;
}

/* Aspect Ratio Containers */
.lazy-media-wrapper--1x1 {
    aspect-ratio: 1/1;
}
.lazy-media-wrapper--4x3 {
    aspect-ratio: 4/3;
}
.lazy-media-wrapper--16x9 {
    aspect-ratio: 16/9;
}
.lazy-media-wrapper--3x2 {
    aspect-ratio: 3/2;
}
.lazy-media-wrapper--21x9 {
    aspect-ratio: 21/9;
}
.lazy-media-wrapper--card {
    aspect-ratio: 280/220;
}
.lazy-media-wrapper--hero {
    aspect-ratio: 16/7;
}
.lazy-media-wrapper--team {
    aspect-ratio: 3/4;
}
.lazy-media-wrapper--logo {
    aspect-ratio: 3/1;
    min-height: 60px;
}

/* Video Play Icon Hint */
.lazy-media-wrapper--video::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.lazy-media-wrapper--video.loaded::after {
    opacity: 0;
    pointer-events: none;
}

/* Error state */
.lazy-media-wrapper.error::before {
    animation: none;
    background: #f0f0f0;
}

.lazy-media-wrapper.error::after {
    content: "\f03e";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #ccc;
    z-index: 3;
}

/* Component-specific Styles */

/* Blog/Project Card */
.blog-card-image .lazy-media-wrapper,
.project-card-image .lazy-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Team Card */
.experts-img .lazy-media-wrapper {
    height: 100%;
}

/* Reference/Partner Logo */
.reference-item .lazy-media-wrapper,
.partner-item .lazy-media-wrapper,
.brand-item .lazy-media-wrapper {
    background: transparent;
    min-height: 50px;
}

.reference-item .lazy-media-wrapper::before,
.partner-item .lazy-media-wrapper::before,
.brand-item .lazy-media-wrapper::before {
    background: linear-gradient(
        90deg,
        rgba(200, 200, 200, 0.1) 0%,
        rgba(200, 200, 200, 0.3) 50%,
        rgba(200, 200, 200, 0.1) 100%
    );
    background-size: 200% 100%;
}

/* Headline Slider */
.headline-bg .lazy-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Service/Solution Card Video */
.service-card-video .lazy-media-wrapper,
.solution-card-video .lazy-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mega Menu */
.mega-category-image .lazy-media-wrapper,
.featured-media .lazy-media-wrapper {
    border-radius: var(--border-radius);
}

/* Solution Detail Media */
.solution-media-split .lazy-media-wrapper {
    height: 100%;
}

/* CTA Box */
.cta-box .lazy-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Blog Details */
.blog-details-image .lazy-media-wrapper {
    height: 100%;
}

/* Recent Posts Sidebar */
.recent-post-image .lazy-media-wrapper {
    width: 100%;
    height: 100%;
}

/* Mobile Responsive */
/* ========================================
   Configurator Form - Simplified 5 Section
======================================== */

/* CPU Selection - Selected State */
.cpu-selection-container {
    width: 100%;
}

.hidden-cpu-selected {
    display: none !important;
}

#cpu-selected {
    padding: 12px 0;
    background: transparent;
    border-radius: 0;
    border: none;
    display: block;
}

#cpu-selected .selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#cpu-selected-text {
    font-weight: 600;
    font-size: 16px;
}

#cpu-change-btn {
    margin-left: 15px;
}

/* Subsection Titles */
.subsection-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--black-soft-color);
    margin-bottom: 15px !important;
}

/* Disk & Secondary Disk Stepper */
.disk-stepper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.stepper-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--theme-color);
}

.stepper-btn:hover {
    background: var(--theme-color);
    color: white;
    border-color: var(--theme-color);
}

.stepper-btn:active {
    transform: scale(0.95);
}

#disk-count-display,
#secondary-disk-count-display {
    font-size: 24px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
    color: var(--theme-color);
}

/* Secondary Disk Toggle */
.secondary-disk-toggle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* RAM Slider */
.ram-slider-wrapper {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ram-current-value {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-color);
}

.ram-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
    color: #666;
}

.ram-labels span {
    flex: 1;
    text-align: center;
}

/* REMOVED DUPLICATE .config-range-slider - See line 8912 for main definition */

/* Contact Form Group */
.contact-form-group {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-form-group .form-label {
    font-weight: 600;
    color: var(--black-soft-color);
    margin-bottom: 8px;
}

.contact-form-group .form-control {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    padding: 10px 12px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form-group .form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--theme-color-rgb), 0.25);
}

/* Form Actions */
.form-actions {
    text-align: center;
}

.form-actions .btn-lg {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* Summary Sidebar */
.configurator-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 100px;
}

.configurator-summary h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-soft-color);
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #666;
}

.summary-value {
    color: var(--theme-color);
    font-weight: 700;
}

.summary-total {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
}

.summary-total .summary-label {
    color: var(--black-soft-color);
}

.summary-total .summary-value {
    font-size: 18px;
}

.summary-total .summary-value.price {
    color: #4caf50;
}

.summary-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 8px 0;
}

.summary-price {
    color: #f59e0b;
    font-weight: 600;
}

.total-price {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 16px;
}

/* Config Option Cards */
.config-option-card {
    position: relative;
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-option-card:hover {
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.config-option-card input:checked + .card-content {
    color: #333;
}

.config-option-card input:checked {
    display: none;
}

.config-option-card.active,
.config-option-card input:checked ~ .card-content ~ *,
.config-option-card:has(input:checked) {
    border-color: #333;
    background: #f5f5f5;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 5px;
}

.card-content strong {
    font-weight: 700;
    color: var(--black-soft-color);
}

.card-content small {
    font-size: 12px;
    color: #999;
}

.card-content i {
    font-size: 20px;
    color: var(--theme-color);
    margin-bottom: 5px;
}

/* Config Options Grid */
.config-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.cpu-cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.disk-type-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.disk-size-cards {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.disk-raid-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.ram-type-cards {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

/* Responsive Design */
@media (max-width: 768px) {
    .lazy-media-wrapper--hero {
        aspect-ratio: 4/3;
    }

    /* Responsive section margin */
    .sec-mar {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .configurator-summary {
        position: static;
        margin-top: 20px;
    }

    .config-options {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .disk-stepper-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    /* Mobile section margin */
    .sec-mar {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Server Gallery Lightbox */
.server-gallery-section {
    background: var(--body-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    background: #e0e0e0;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 32px;
    color: white;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-title {
    color: white;
    margin-top: 15px;
    font-size: 16px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-nav {
        padding: 10px 15px;
        font-size: 18px;
    }
}

/* Error Page Styles */
.error-page-bg {
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.error-content h1 {
    font-size: 120px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
    color: #1a1a1a;
}

.error-content h1 span {
    color: var(--black-color2);
}

.error-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

.error-text br {
    margin: 10px 0;
}

.error-img {
    text-align: center;
}

.error-img img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .error-content h1 {
        font-size: 80px;
    }

    .error-page-bg {
        padding: 60px 0;
    }
}