@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
}

* {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f7fa;
}

.text-white {
    color: #fff !important;
}

.main-wrapper {
    /*overflow: hidden; /* menü fix */
    background: linear-gradient(135deg, rgb(10, 35, 100) 0%, rgb(28, 78, 170) 100%);
    color: #fff;
}

.ghsResizeContent {
    position: relative;
    width: 100%;
    max-width: 1146px;
    margin: 0 auto;
    padding: 0 15px;
}

.ghsSection1 {
    position: relative;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    background: rgba(24, 30, 44, .5);
    transition: background 0.3s ease;
    padding: 8px 0;
    height: auto;
}

.ghsLanguageContainer, .ghsCurrencyContainer {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    z-index: 1000;
}

.ghsLanguageText, .ghsCurrencyText {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.currency-item {
    white-space: nowrap;
}

.language-item, .currency-item {
    padding: 12px 15px;
    color: #333;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.language-item:last-child, .currency-item:last-child {
    border-bottom: none;
}

.language-item:hover, .currency-item:hover {
    background: #f5f5f5;
    padding-left: 20px;
}

.ghsLanguageContainer:hover .ghsLanguageItemContainer,
.ghsCurrencyContainer:hover .ghsCurrencyItemContainer {
    display: block;
}

.ghsLanguageText:hover, .ghsCurrencyText:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ghsLanguageItemContainer, .ghsCurrencyItemContainer {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    margin-top: 5px;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s;
    opacity: 0;
    visibility: hidden;
}

.ghsLanguageContainer:hover .ghsLanguageItemContainer,
.ghsCurrencyContainer:hover .ghsCurrencyItemContainer,
.ghsLanguageItemContainer:hover,
.ghsCurrencyItemContainer:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.ghsMenu {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0;
    width: 100%;
}

.menu-item {
    flex: 1;
    text-align: center;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menuWeb {
    position: fixed;
    width: 100%;
    left: 0;
    top: auto;
    z-index: 999;
    display: none;
}

.menu-category {
    padding: 15px 0;
}

.menu-category-title {
    color: #2a333e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun düzeni */
    gap: 20px;
    position: relative; /* Added position for stability */
}

.menu-grid-item {
    display: flex;
    padding: 15px;
    border-radius: 10px;
    transition: background 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
    position: relative; /* Added position for stability */
}

.menu-grid-item:hover {
    background: #f5f7fa;
    border: 1px solid #e6e9ef;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.menu-icon {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.menu-icon i {
    color: #0059ed;
    font-size: 20px;
}

.menu-item-content h5 {
    color: #2a333e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.menu-item-content p {
    color: #6c757d;
    font-size: 13px;
    margin: 0;
}

/* İki sütunlu kategori düzenlemesi */
.menu-category-row {
    display: flex;
    flex-wrap: wrap;
}

.menu-column {
    flex: 0 0 200px;
    margin-right: 30px;
}

.menu-column-title {
    color: #2a333e;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.menu-column-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-column-list li {
    margin-bottom: 10px;
}

.menu-column-list a {
    color: #6c757d;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-column-list a:hover {
    color: #0059ed;
}

/* menuShow class'ı eklendiğinde görünür olacak */
.menuElement {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: none;
    width: 100%;
    max-width: 1146px; /* ghsResizeContent ile aynı genişlikte olmalı */
    margin: 0 auto; /* Ortala */
}

.menu-item i {
    margin-left: 8px;
    font-size: 12px;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.15);
    display: flex !important;
}

.ghsCurrencyText {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
}

.ghsCurrencyText i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.currency-symbol {
    margin-right: 8px;
    font-weight: 600;
}

.currency-symbol {
    width: 15px;
    text-align: center;
    font-weight: 600;
    margin-right: 12px;
}

.currency-text {
    margin-left: 5px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}

.language-item img {
    width: 20px;
    height: 15px; /* Bayrak için daha uygun oran */
    margin-right: 12px;
    border: 1px solid #eee;
    border-radius: 3px;
}

.language-item.active {
    background: #f0f7ff;
    font-weight: 600;
}

.top-user-nav {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.user-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.2s ease;
    margin-left: 5px;
}

.user-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
}

.user-nav-link i {
    margin-right: 5px;
    font-size: 14px;
}

.header-middle {
    padding: 10px 0;
}

.ghsLogo {
    background-image: url(/assets/img/main/glorynewlogo.png);
    background-repeat: no-repeat;
    background-position: 0;
    height: 114px;
    width: 300px;
    display: block;
    background-size: contain;
    transition: transform 0.3s ease;
}

.ghsLogo:hover {
    transform: scale(1.02);
}

.ghsHeaderInfoContainer {
    padding: 22px 0;
}

.ghsHeaderInfoContainer > div {
    font-size: 15px;
    line-height: 36px;
    color: #fff;
}

.ghsHeaderInfoContainer > div > i {
    margin-right: 5px;
    font-size: 18px;
}

.working-hours {
    color: #fff;
    font-size: 15px;
}

.hours-detail {
    font-size: 14px;
    opacity: 0.9;
    margin-left: 22px;
}

.ghsHeaderInfoLink {
    font-size: 15px;
    line-height: 36px;
    cursor: pointer;
    text-decoration: underline;
    transition: opacity 0.2s ease;
    color: #fff;
}

.ghsHeaderInfoLink:hover {
    opacity: 0.8;
}

.ghsHeaderInfoTel {
    font-size: 24px !important;
    line-height: 36px;
    font-weight: 600;
    color: #fff;
}

.ghsHeaderInfoSales {
    font-size: 17px !important;
    line-height: 36px;
    color: #fff;
}


.menu-item:hover .menuElement, .menuElement:hover {
    display: flex !important;
}

.menuSubElement {
    background: #fff;
    padding: 1.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s ease;
    width: 25%; /* Belirlenen sabit genişlik */
}

.menuSubElement:hover {
    background: #f3f5f9;
}

.menuItemTitle {
    color: #2a333e;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0 5px;
}

.menuItemPrice {
    color: #2a333e;
    font-weight: 500;
    font-size: 14px;
}

.menuItemPriceHighlight {
    color: #0059ed;
    font-weight: 600;
    font-size: 18px;
}

.menuItemLogo {
    text-align: center;
    margin-bottom: 10px;
}

.menuItemLogo i {
    color: #0059ed;
}

.primary-color {
    color: #0059ed;
}

.ghs-divider {
    position: relative;
    height: 1px;
    background: #e4e8ee;
    width: calc(100% - 60px);
    margin: 10px auto;
}


/* Header'daki Slider .Kısmı - Düzeltme 2 */
.ghsHeroContainer {
    position: relative;
    overflow: hidden;
    padding: 30px 0 40px; /* Reduced top padding */
    background: linear-gradient(135deg, rgb(10, 35, 100) 0%, rgb(28, 78, 170) 100%);
}

.hero-content {
    position: relative;
    height: 415px;
    padding: 20px 0 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%; /* Ensure full width */
}

.hero-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.hero-nav-prev, .hero-nav-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.hero-nav-prev:hover, .hero-nav-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.ghsHeroTitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 15px;

}

.ghsHeroTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
}

.ghsHeroDescription {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 90%;
}

.ghsHeroPriceFrom {
    position: relative;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-top: auto;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.ghsHeroPriceStarting {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-left: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ghsHeroButton {
    position: relative;
    text-decoration: none;
    height: auto;
    min-height: 52px;
    background: linear-gradient(135deg, rgb(10, 35, 100) 0%, rgb(28, 78, 170) 100%);
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    border-radius: 10px;
    padding: 10px 40px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    color: #0046ba;
    background: #ffffff;
    display: inline-flex; /* Changed from flex to inline-flex */
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: auto; /* Added width property */
    z-index: 5; /* Added z-index to ensure visibility */
}

.ghsHeroButton:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 70, 186, 0.5);
    background: #f0f0f0;
    color: #003399;
}

.ghsHeroBg00 {
    width: 824px;
    height: 186px;
    background-size: 824px 186px;
    right: -194px;
    top: 80px;
    background-image: url("https://fastvps.hosting/assets/products/fm-vps/sites.svg");
    position: absolute;
    animation: fadeIn 1s ease;
    opacity: 0.3;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.ghsHeroBg01 {
    width: 321px;
    height: 331px;
    background-size: 321px 331px;
    right: 0;
    top: 50px;
    background-image: url("https://fastvps.hosting/assets/products/fm-vps/ok-dude.png");
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.hero-bullets {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bullets-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bullet.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Öne Çıkan Hizmetler - Düzeltme 3 */
.featured-container {
    background: white;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.section-title h2 {
    color: #2a333e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #0059ed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #6c757d;
    font-size: 18px;
}

.ghsFeatured {
    text-align: center;
    margin: 15px auto;
    width: 100%;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 14px 0 rgba(34,38,53,.06);
    background-color: #fff;
    transition: box-shadow .2s linear, transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 460px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ghsFeatured:hover {
    box-shadow: 0 15px 20px 0 rgba(34,38,53,.15);
    transform: translateY(-5px);
}

.ghsFeatured > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    text-decoration: none;
}

.ghsFeaturedImage {
    margin: 30px 0 15px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghsFeaturedImage i {
    color: #0059ed;
    margin-bottom: 10px;
    font-size: 45px;
}

.ghsFeaturedTitle {
    color: #2a333e;
    font-size: 22px;
    line-height: 28px;
    height: 56px;
    margin: 10px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghsFeaturedDescription {
    color: #6c757d;
    margin: 15px 20px;
    font-size: 15px;
    line-height: 1.6;
    height: 100px;
    overflow: hidden;
    display: block;
}

.ghsFeaturedPrice {
    color: #2a333e;
    font-size: 22px;
    line-height: 38px;
    margin: 15px 0 4px 0;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghsFeaturedPriceAlt {
    font-size: 16px;
    color: #6c757d;
    margin-left: 5px;
    font-weight: normal;
}

.ghsFeaturedMoreButton {
    background: #0059ed;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0;
    width: 70%;
    margin: 10px auto 20px auto;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ghsFeatured:hover .ghsFeaturedMoreButton {
    background: #0046ba;
    transform: translateY(-2px);
}

.ghsFeaturedMoreButton:hover {
    background: #0046ba;
    box-shadow: 0 10px 15px 0 rgba(0, 89, 237, 0.3);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.ghsFeaturedMoreButton a {
    display: inline-block;
    background: #0059ed;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 5px 10px 0 rgba(0, 89, 237, 0.2);
    transition: all 0.3s ease;
}

.ghsFeaturedMoreButton a:hover {
    background: #0046ba;
    box-shadow: 0 10px 15px 0 rgba(0, 89, 237, 0.3);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.ghsFeaturedMoreButton i {
    margin-left: 5px;
    font-size: 14px;
    color: #fff;
}

.advantages-section {
    background: #f5f7fa;
    padding: 70px 0;
}

.advantage-item {
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 320px; /* Sabit yükseklik */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.advantage-icon {
    margin-bottom: 20px;
    color: #0059ed;
    font-size: 40px;
}

.advantage-icon i {
    font-size: 40px;
    color: #0059ed;
}

.advantage-item h3 {
    color: #2a333e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 50px; /* Başlık için sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item p {
    color: #6c757d;
    font-size: 15px;
    overflow: visible;
    padding-right: 5px;
    line-height: 1.6;
    flex-grow: 1;
}

.contact-section {
    background: linear-gradient(135deg, rgb(10, 35, 100) 0%, rgb(28, 78, 170) 100%);;
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.contact-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 15px;
    margin: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}

.contact-option h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-option p {
    color: #fff;
    font-size: 16px;
}

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

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: #fff;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-image {
    height: 280px; /* Arttırılmış resim yüksekliği */
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    color: #2a333e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 60px; /* Sabit başlık yüksekliği */
    display: flex;
    align-items: flex-start;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 15px;
    height: 72px; /* Sabit özet yüksekliği - 3 satır için */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Kesinlikle 3 satır göster */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; /* Fazlası için ... göster */
}

.blog-link-container {
    background: linear-gradient(90deg, #005bea, #46a7ff);
    text-align: center;
    padding: 15px;
    margin-top: auto;
}

.blog-link {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.blog-link i {
    margin-left: 5px;
}

/* Testimonials ve Footer Arası Renk Geçişi - Düzeltme 4 */
.testimonials-section {
    background: linear-gradient(135deg, rgb(10, 35, 100) 0%, rgb(28, 78, 170) 100%);
    padding: 70px 0 70px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    color: #fff;
}

.testimonials-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: none;
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    padding: 30px 0;
}

.testimonials-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 -15px;
}

.testimonial-item {
    flex: 0 0 calc(33.333% - 30px);
    padding: 0 15px;
    height: 280px;
    transition: all 0.5s ease;
    z-index: 9999;
    margin: 15px 0;
}

.testimonial-content {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.testimonial-content:before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(255,255,255,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.client-info {
    margin-top: 20px;
}

.client-name {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.client-position {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.testimonial-dots {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
    color: #fff;
}

.testimonial-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.testimonial-nav button {
    position: absolute;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    top: -140px; /* Yukarı taşındı */
}

.testimonial-nav button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

/* Responsive ayarlamalar */
@media (max-width: 992px) {
    .testimonials-wrapper {
        flex-wrap: wrap;
    }

    .testimonial-item {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        flex: 0 0 100%;
    }

    .ghsFeatured {
        height: auto;
        min-height: 480px;
    }

    .ghsFeaturedDescription {
        height: auto;
        min-height: 100px;
    }

    .indirim-content-wrap {
        text-align: center;
        margin-bottom: 30px;
    }

    .text-md-left {
        text-align: center;
    }
}

.ghsFooterContainer {
    position: relative;
    background: #1a1a1a;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 0;
    margin-top: 0;
    border-top: none;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 40 L40 30 L40 40 Z' fill='rgba(255,255,255,0.02)'/%3E%3Cpath d='M70 40 L80 30 L80 40 Z' fill='rgba(255,255,255,0.02)'/%3E%3Cpath d='M20 70 L30 60 L30 70 Z' fill='rgba(255,255,255,0.02)'/%3E%3Cpath d='M80 70 L90 60 L90 70 Z' fill='rgba(0,91,234,0.02)'/%3E%3Cpath d='M50 50 L60 40 L60 50 Z' fill='rgba(0,91,234,0.02)'/%3E%3Cpath d='M50 80 L60 70 L60 80 Z' fill='rgba(255,255,255,0.02)'/%3E%3Cpath fill='rgba(0,70,186,0.03)' d='M20 20h10v10H20z'/%3E%3Cpath fill='rgba(255,255,255,0.02)' d='M70 70h10v10H70z'/%3E%3C/svg%3E");
}

.ghsFooterMenu {
    padding: 20px 0;
}

.ghsFooterEnd {
    background: #1a1a1a; /* Footer ile aynı renk */
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 25px 0;
    margin-top: 0;
}

/* Footer boşluk düzeltmesi */
.ghsFooterContainer, .ghsFooterEnd {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.col-12[style="border-top: 1px solid rgba(229,235,255,.08);"] {
    display: none; /* Gereksiz boşluk oluşturan elementi kaldır */
}

.ghsFooterTitle {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 20px;
    color: #fff;
}

.ghsFooterTitle::after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 46px 4px;
    height: 4px;
    width: 100px;
    bottom: 0;
    left: 0;
    background-image: url(https://fastvps.hosting/assets/main/separator.svg);
}

.ghsFooterItem {
    margin-bottom: 10px;
}

.ghsFooterItem > a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 32px;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 0;
}

.ghsFooterItem > a:hover {
    color: #fff;
    padding-left: 5px;
}

.partners-slider {
    position: relative;
    padding: 40px 0;
    margin: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-slider .slick-track {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    padding: 0 25px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.partner-logo img {
    max-width: 130px;
    max-height: 60px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img.filterinvert {
    filter: invert(1) grayscale(100%);
}

.partner-logo:hover img.filterinvert {
    filter: invert(1) grayscale(0%);
}

.footer-certificates {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.footer-certificates img {
    max-height: 50px;
    margin: 10px 25px;
    transition: transform 0.3s ease;
}

.footer-certificates img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.footer-logo-copyright {
    display: flex;
    align-items: center;
}

.footer-logo {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
    color: #fff;
}

.footer-links {
    text-align: right;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:not(:last-child):after {
    content: '•';
    position: absolute;
    right: -12px;
    opacity: 0.5;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-trademark {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    margin-top: 20px;
    color: #fff;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* DÜZELTME 1: Sol taraftaki yan butonların düzeltmesi */
.side-buttons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.side-button {
    padding: 15px;
    width: 50px;
    height: 160px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin: 0;
}

.side-button:hover {
    width: 60px;
    color: white;
    text-decoration: none;
}

.whatsapp-button {
    background: #25d366;
    border-radius: 0 0 0 5px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-button:hover {
    background: #1fb959;
}

.uptime-button {
    background: #46a7ff;
    border-radius: 5px 0 0 0;
}

.uptime-button:hover {
    background: #2989e6;
}

/* DÜZELTME 2: Header info box'ların düzeltmesi (çizgilerden uzaklaştırma) */
.header-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    height: 100%;
}

.header-info-box {
    display: flex;
    align-items: center;
    padding: 0 35px; /* Arttırılmış padding */
    position: relative;
}

.header-info-box:not(:last-child):after {
    content: '';
    position: absolute;
    right: 20px; /* Çizginin içerikten uzaklaştırılması */
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.info-icon i {
    font-size: 18px;
    color: #fff;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.info-title-large {
    font-size: 20px;
}

.info-detail {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.contact-links {
    display: flex;
    flex-direction: column;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-link i {
    margin-right: 8px;
    font-size: 14px;
}

.contact-link:hover {
    color: #46a7ff;
}

/* DÜZELTME 3: Server illustration düzeltmeleri */
.server-illustration {
    position: relative;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: visible;
}

.server-image {
    max-width: 100%;
    max-height: 100%;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.server-image:hover {
    transform: translateY(-10px);
}

.server-illustration .ghsHeroBg00 {
    width: 824px;
    height: 186px;
    background-size: 824px 186px;
    right: -194px;
    top: 80px;
    background-image: url("https://fastvps.hosting/assets/products/fm-vps/sites.svg");
    position: absolute;
    animation: fadeIn 1s ease;
    opacity: 0.3;
    z-index: 1;
}

.server-illustration .ghsHeroBg01 {
    width: 321px;
    height: 331px;
    background-size: 321px 331px;
    right: 0;
    top: 50px;
    background-image: url("https://fastvps.hosting/assets/products/fm-vps/ok-dude.png");
    position: absolute;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 91, 234, 0.2) 0%, rgba(0, 91, 234, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s infinite;
}

@keyframes slideInLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.testimonial-slide-in {
    animation: slideInLeft 0.8s forwards;
}

.testimonial-slide-out {
    animation: slideOutLeft 0.8s forwards;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* DÜZELTME 1: Navigasyon Bar Düzeltmesi */
#menuWeb, .menuElement, .ghsLanguageItemContainer, .ghsCurrencyItemContainer {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.menu-item, .ghsLanguageText, .ghsCurrencyText {
    user-select: none;
    -webkit-user-select: none;
}

.ghsLanguageContainer, .ghsCurrencyContainer {
    z-index: 1002; /* Higher than menu items */
}

#menuWeb {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    z-index: 999;
    display: none;
}

.menuElement {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: none;
    width: 100%;
    left: 50%;
    max-width: 1117px;
    position: absolute;
    transform: translateX(-50%);
    margin: 0 auto;
    z-index: 1001; /* Higher z-index to ensure visibility */
}

/* Kurumsal menüsünü diğerleri gibi yapılandırma */
#menuContentCorporate .menu-category {
    padding: 15px 0;
}

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

#menuContentCorporate .menu-category-row {
    width: 100%;
}

/* DÜZELTME 5: Dil ve para birimi menüsünü iyileştirme */
.ghsLanguageItemContainer, .ghsCurrencyItemContainer {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    margin-top: 5px;
    display: none;
    overflow: hidden;
    z-index: 1000;
    transition: opacity 0.3s;
    opacity: 0;
    visibility: hidden;
}

.ghsLanguageContainer:hover .ghsLanguageItemContainer,
.ghsCurrencyContainer:hover .ghsCurrencyItemContainer,
.ghsLanguageItemContainer:hover,
.ghsCurrencyItemContainer:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Dil ve para birimi menüleri hover olduğunda açık kalması */
.ghsLanguageContainer, .ghsCurrencyContainer {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    z-index: 1000;
}

/* Testomonials ve Footer arası yumuşak geçiş */
.blue-to-black-transition {
    height: 30px;
    background: linear-gradient(to bottom, #46a7ff 0%, #000 100%);
    position: relative;
    z-index: 2;
}

.ptb-100 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.indirim-section {
    background: linear-gradient(135deg, rgb(10, 35, 100) 0%, rgb(28, 78, 170) 100%);
    position: relative;
    color: #fff;
    text-align: left;
}

.indirim-section .indirim-content-wrap h3 {
    text-align: left;
}

.indirim-section .indirim-content-wrap p {
    text-align: left;
}

.indirim-content-wrap {
    padding: 20px 0;
}

.indirim-content-wrap h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.indirim-content-wrap p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.indirim-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 20px;
    margin-left: 5px;
}

.indirim-action {
    display: flex;
    flex-direction: column;
}

.indirim-action a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.primary-bg {
    background-color: rgba(255, 255, 255, 0.15);
}

.indirim-action a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.custom-shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mr-1 {
    margin-right: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.text-md-left {
    text-align: left;
}

.d-grid {
    display: grid;
    gap: 15px;
}

.discount-section {
    background: linear-gradient(135deg, rgb(10, 35, 100) 0%, rgb(28, 78, 170) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 60px 0;
}

.discount-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    height: 100%;
    opacity: 0.5;
}

.discount-content {
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.discount-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discount-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.discount-code {
    background: #fff;
    color: #0046ba;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 22px;
    display: inline-block;
    letter-spacing: 1px;
}

.discount-code-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.discount-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discount-button {
    display: inline-block;
    background: #fff;
    color: #0046ba;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.discount-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.discount-button:hover i {
    transform: translateX(5px);
}

.discount-button:hover {
    background: #f8f9fa;
    color: #0046ba;
    text-decoration: none;
}

.discount-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.discount-image:hover img {
    transform: translateY(-5px);
}

.discount-image {
    position: relative;
    text-align: center;
    padding: 20px;
    margin-left: 20px;
}

.discount-inner {
    position: relative;
    padding: 40px 0;
}

.discount-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.discount-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff3860, #ff4d4d);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(255, 56, 96, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.discount-badge span {
    font-size: 36px;
    line-height: 1;
}

.discount-badge small {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}