:root {
    --font-poppins: "Poppins", sans-serif;
    --white-color: #fff;
    --black-color: #0f141a;
    --black-color2: #0f141b;
    --gray-color: #f2f2f7;
    --paragraph-color: #272727;
    --theme-color: #0f141b;
    --body-color: #f8f8f8;
    --border-color: #232323;
    --black-soft-color: #7e7e7e;
    --border-radius: 15px;
}

::-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-poppins);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-poppins);
    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(--body-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-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: flex-end;
}

.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;
}

.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,
.nav-item:hover .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: auto;
    left: 0;
    right: 0;
    width: 100vw;
    transform: translateY(15px);
    background-color: var(--white-color);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

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

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

/* Sol Taraf - Kategoriler */
.mega-categories {
    width: 280px;
    background-color: var(--gray-color);
    padding: 20px 0;
    flex-shrink: 0;
}

.mega-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mega-category-item:hover,
.mega-category-item.active {
    background-color: var(--white-color);
}

.mega-category-item:hover .category-title,
.mega-category-item.active .category-title {
    color: var(--theme-color);
}

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

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

.mega-category-item:hover i,
.mega-category-item.active i {
    color: var(--theme-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;
}

.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(2, 1fr);
    gap: 8px;
}

.detail-item {
    display: block;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.2s ease;
}

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

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

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

/* 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;
}

/* 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: 16px;
}

.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 Card Styles */
.server-card-item .server-specs-inline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.server-card-item .server-specs-inline .spec-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--paragraph-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

.server-card-item .server-specs-inline .spec-item i {
    color: var(--theme-color);
    font-size: 12px;
}

.server-card-item .server-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.server-card-item .server-price {
    text-align: left;
}

.server-card-item .price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
}

.server-card-item .price-period {
    font-size: 13px;
    color: var(--paragraph-color);
}

.server-card-item .server-btn {
    background: var(--theme-color);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.server-card-item .server-btn span {
    color: white;
}

.server-card-item .server-btn svg path {
    fill: white;
}

/* 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;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-poppins);
    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;
    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-poppins);
}

/* MATA Button 1 - Blue Gradient Box Shadow */
.mata-btn-1 {
    background: var(--theme-color);
    transition: box-shadow 0.4s ease;
}

.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);
}

/* MATA Button 2 - Rainbow Gradient Box Shadow */
.mata-btn-2 {
    background: #4a5fd1;
    transition: box-shadow 0.4s ease;
}

.mata-btn-2:hover {
    box-shadow: 0 0 20px rgba(74, 95, 209, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3), 0 0 60px rgba(236, 72, 153, 0.2),
        0 0 80px rgba(249, 115, 22, 0.2), 0 0 100px rgba(234, 179, 8, 0.1);
}

/* MATA Button 3 - Teal Gradient Box Shadow */
.mata-btn-3 {
    background: #06b6d4;
    transition: box-shadow 0.4s ease;
}

.mata-btn-3:hover {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4), 0 0 40px rgba(6, 214, 160, 0.3),
        0 0 60px rgba(20, 184, 166, 0.2);
}

/* 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-poppins);
    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;
}

.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: 550px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Aktif olmayan slide'lar - küçük ve soluk */
.swiper-slide {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
}

/* Aktif slide - büyük ve net */
.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

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

.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;
    top: 50px;
    right: 20%;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.headline-nav button {
    width: 60px;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white-color);
    border-radius: var(--border-radius);
    color: var(--black-color);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headline-nav button:hover {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--black-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);
}

/* 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-poppins);
}

.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-poppins);
    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%;
}

.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: 14px;
    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;
}

.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 {
    transform: translateX(0);
}

/* 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;
}

.references-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.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: 60px;
    width: max-content;
}

/* Sağdan Sola - RTL */
.marquee-rtl {
    animation: marquee-rtl 40s linear infinite;
}

/* Soldan Sağa - LTR */
.marquee-ltr {
    animation: marquee-ltr 40s 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;
}

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

.reference-item img {
    height: 50px;
    width: auto;
    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-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-poppins);
}

.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-poppins);
}

.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-poppins);
    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: 60px 0;
    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-poppins);
    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 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;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.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;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

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

.footer-contact ul li i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact ul li span,
.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 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: 50%;
    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;
}

.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: center;
    margin-top: 40px;
}

/* 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(--body-color);
    border: 1px solid #e9ebed;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.4s ease;
    height: 100%;
}

.about-feature-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);
}

.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: 40px;
    margin-top: 60px;
}

.about-stat-item {
    text-align: center;
    padding: 20px 0;
    background: transparent;
    border-radius: var(--border-radius);
    border: none;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-2px);
}

.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-poppins);
    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 */
/* Solution Details Section */
.solution-details {
    padding: 80px 0;
    background: #fff;
}

.solution-detail-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solution-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.solution-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

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

.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;
}

/* 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;
}

/* 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-poppins);
}

.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-poppins);
}

.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;
}

/* 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;
}

/* 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-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 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: 13px;
    font-weight: 700;
    color: var(--black-color2);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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-poppins);
    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-poppins);
}

/* 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: 50%;
    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-poppins);
    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-poppins);
}

.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;
    }
}
