
:root {
    --primary-color: #EF8D2A;      /* Primary */
    --secondary-color: #141414;     /* Secondary */
    --text-color: #787878;          /* Text */
    --accent-color: #FBFBFB;        /* Accent */
    --overlay-color-1: #E7E7E7;     /* Overlay Color 1 */
    --overlay-color-2: #F8F8F8;     /* Overlay Color 2 */
    --transparent-color: #00000000;  /* Transparent Color 1 */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    position: relative !important;
    float: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    color: #787878;
    overflow-x: hidden;
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Top */
.header-top {
    background: var(--accent-color);
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.contact-info {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--overlay-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
}

/* Main Header */
.header-main {
    background: var(--secondary-color);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
}

.logo img {
    height: 55px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.nav-active {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.nav-active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../images/O4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 141, 42, 0.25);
    z-index: 1;
}

.hero-background {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero ana layout - Sol resim, orta yazı, sağ resim için flexbox düzeni */
.hero-main-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0; /* Gap'i sıfırla, padding ile kontrol et */
    min-height: 60vh;
    position: relative;
}

/* Sol resim container - Soldan çalışarak gelen animasyon */
.hero-left-image {
    position: absolute;
    left: -200px;
    bottom: -50px;
    z-index: 1;
    max-width: 650px;
    animation: workingFromLeft 1.2s ease-out forwards;
    opacity: 0;
}

/* Sağ resim container - Sağdan çalışarak gelen animasyon */
.hero-right-image {
    position: absolute;
    right: -200px;
    bottom: -50px;
    z-index: 1;
    max-width: 650px;
    animation: workingFromRight 1.2s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Hero resim stilleri - Orta boyutlu ve temiz */
.hero-left-image img,
.hero-right-image img {
    width: 100%;
    height: auto;
    max-width: 650px;
    object-fit: contain;
}

/* Hover efekti */
.hero-left-image img:hover {
    transform: scaleX(-1) scale(1.05);
}

.hero-right-image img:hover {
    transform: scale(1.05);
}

/* Sol resmin yönünü çevir */
.hero-left-image img {
    transform: scaleX(-1);
}

/* ===== REFERANSLAR BÖLÜMÜ ===== */
.referanslar-bolumu {
    padding: 6rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.referanslar-header {
    text-align: center;
    margin-bottom: 4rem;
}

.referanslar-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.referanslar-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.referanslar-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.referanslar-slider {
    overflow: hidden;
    width: 100vw; /* Tüm viewport genişliği */
    position: relative;
    margin-left: calc(-50vw + 50%); /* Container'dan çık, tüm ekranı kapla */
}

.referanslar-track {
    display: flex;
    animation: slideRightToLeft 40s linear infinite;
    width: max-content; /* İçeriğe göre genişlik */
    gap: 2rem; /* Kartlar arası boşluk */
}

.referans-karti {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    min-width: 220px; /* Daha büyük kartlar */
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.referans-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.referans-logo {
    position: relative;
    height: 100px; /* Daha büyük logo alanı */
    display: flex;
    align-items: center;
    justify-content: center;
}

.referans-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.referans-karti:hover .referans-logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Slider animasyonu - Sağdan sola kayma */
@keyframes slideRightToLeft {
    0% {
        transform: translateX(100vw); /* Sağ kenardan başla */
    }
    100% {
        transform: translateX(-100%); /* Sol kenara kadar git */
    }
}

/* Hover'da animasyonu durdur */
.referanslar-slider:hover .referanslar-track {
    animation-play-state: paused;
}

/* Boş durum stilleri */
.referanslar-bos {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.bos-durum-ikonu {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.referanslar-bos h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.referanslar-bos p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .referans-karti {
        min-width: 160px;
        padding: 1.5rem;
    }
    
    .referans-logo {
        height: 80px;
    }
    
    .referanslar-track {
        animation-duration: 30s; /* Mobilde normal hız */
        gap: 1.5rem; /* Kartlar arası boşluk */
    }
}

/* Orta yazı alanı - İlk yüklemeden itibaren yukarıda konumlanır */
.hero-content {
    flex: 1; /* Kalan alanı kapla */
    max-width: 40%; /* Maksimum genişlik sınırı */
    text-align: center; /* Yazıları ortala */
    padding: 0 3rem; /* Sol-sağ boşluk */
    z-index: 3; /* Resimlerin üstünde */
    position: relative; /* Z-index için */
    margin: 0 auto; /* Otomatik ortalama */
    transform: translateY(-80px); /* Yazıları yukarı taşı */
    will-change: transform; /* GPU hızlandırması için */
    backface-visibility: hidden; /* Render optimizasyonu */
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.hero-tag i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-tag span {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
}

.hero-title-line1 {
    font-size: 5rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -3.5px;
}

.hero-title-line2 {
    font-size: 5rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -3.5px;
}


/* Color Variables */
:root {
    --primary-color: #EF8D2A;
    --secondary-color: #141414;
    --text-color: #787878;
    --accent-color: #FBFBFB;
    --overlay-color-1: #E7E7E7;
    --overlay-color-2: #F8F8F8;
    --transparent: #00000000;
}

/* Header Top */
.header-top {
    background: var(--accent-color);
    padding: 1em 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.header-contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 15px;
}

.header-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
}

/* Main Header */
.header-main {
    background: var(--secondary-color);
    padding: 1.5em 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
}

.logo img {
    height: 50px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.nav-active {
    color: var(--primary-color);
}

.main-nav a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #d17a20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 141, 42, 0.3);
}

/* Hero bölümündeki butonlar için özel stiller */
.hero-buttons .btn-primary {
    background: white !important;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.hero-buttons .btn-secondary:hover {
    background: white !important;
    color: var(--primary-color) !important;
    border-color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 0.75;
    z-index: 1;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Hero content - Hızlı ve pürüzsüz aşağıdan çıkma animasyonu */
.hero-content {
    animation: fastFadeInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-welcome {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
}

.hero-welcome i {
    color: var(--secondary-color);
    font-size: 20px;
}

.hero-titles {
    margin-bottom: 2rem;
}

.hero-title-line1 {
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -3.5px;
    color: var(--secondary-color);
    margin: 0;
}

.hero-title-line2 {
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -3.5px;
    color: var(--accent-color);
    margin: 0;
}

/* KALDIRILDI: İkinci tekrarlanan hero-description tanımı */

.btn-secondary {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 14px 28px;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 20, 20, 0.2);
}

.hero-side-image {
    text-align: center;
    animation: fadeInRight 1s ease;
}

.hero-side-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/O4.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 50%;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-tag i {
    color: white;
    font-size: 1.2rem;
}

/* Hero başlıkları - Tek satırda görüntülenir */
.hero-title-line1,
.hero-title-line2 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 0.9;
    margin: 0;
    color: white;
    letter-spacing: -3.5px;
    white-space: nowrap; /* Başlıkları tek satırda tut, satır atlama yok */
}

.hero-title-line2 {
    margin-bottom: 2rem;
}

/* Hero açıklama metni - Tek aktif tanım */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}


/* Equipment Services Slider */
.equipment-services-section {
    padding: 0;
    background: white;
}

.services-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.service-slide {
    background: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-slide:hover {
    background: var(--overlay-color-1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-slide-content {
    padding: 2em;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    min-height: 140px;
}

.service-image {
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.service-text p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 0;
}

.about-background {
    background: url('../images/O4.png') center center / cover no-repeat;
    background-color: #f8f8f8;
    position: relative;
    padding: 4rem 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1;
}

/* Image Grid - Sol taraf */
.about-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.about-main-image {
    grid-row: 1 / 3;
    grid-column: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-image {
    grid-row: 1;
    grid-column: 2;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,142,61,0.4);
}

.about-bottom-image {
    grid-row: 2;
    grid-column: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content - Sağ taraf */
.about-text-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-text-content .section-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Bottom Section - Now in middle */
.about-bottom-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: left;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more-btn:hover {
    background: #2a2a2a;
    gap: 1rem;
}

.years-badge {
    background: var(--secondary-color);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 8px 25px rgba(255,142,61,0.3);
}

.years-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.years-number span {
    font-size: 1.8rem;
}

.years-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.vision-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    flex: 1;
}

.vision-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vision-box p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.about-images {
    position: relative;
}

.about-image-main {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-main img {
    width: 100%;
    height: auto;
}

.about-image-small {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
}

.about-image-small img {
    width: 100%;
    height: auto;
}

.about-content {
    padding-left: 2rem;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.section-tag i {
    font-size: 20px;
    color:#ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
}

.about-feature-highlight {
    background: var(--overlay-color-2);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.badge-text {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.about-feature-highlight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.feature-checklist i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 15px;
}

.btn-transparent {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-transparent:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Counter Section */
.counter-section {
    background: var(--secondary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 16rem 0;
}

.counter-overlay {
    background: rgba(20, 20, 20, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.counter-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.counter-content {
    text-align: left;
}
.counter-content .section-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.counter-content .section-tag i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.counter-content .section-title {
    color: white !important;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.counter-content h2 {
    color: white !important;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.counter-content .section-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 1;
}

.counter-content p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 1;
}

.counter-content .btn-primary {
    background: var(--primary-color);
    color: var(--accent-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.counter-content .btn-primary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.counter-content .btn-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.counter-content .btn-primary:hover i {
    transform: translateX(3px);
}

.counter-numbers {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
    color: var(--accent-color);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.counter-number span {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.counter-item h6 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent-color);
    opacity: 0.9;
}

/* Hidrokon Style Equipment Section */
.hidrokon-equipment-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.hidrokon-equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hidrokon-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.hidrokon-section-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hidrokon-section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hidrokon-section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Filter Tabs */
.hidrokon-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

/* Machines Grid */
.hidrokon-machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Machine Cards */
.hidrokon-machine-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hidrokon-machine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Machine Image Container */
.machine-image-container {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.machine-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 1rem;
}

.hidrokon-machine-card:hover .machine-image-container img {
    transform: scale(1.1);
}

/* Machine Overlay */
.machine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(243, 156, 18, 0.9) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

/* Machine Badges */
.machine-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    color: #1a202c;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge.featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge.new {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

/* Quick Actions */
.machine-quick-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-self: flex-end;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.quick-action-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Machine Content */
.machine-content {
    padding: 2rem;
}

.machine-header {
    margin-bottom: 1.5rem;
}

.machine-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.machine-category {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

/* Machine Specs */
.machine-specs {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.spec-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

.spec-value {
    color: #1a202c;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Machine Footer */
.machine-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.machine-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.price-period {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Machine Actions - Makina kartlarındaki butonlar için */
.machine-actions {
    gap: 0.5rem;
    display: flex;
    justify-content: center; /* Butonu ortala */
}

/* Makina kartlarındaki detaylar butonu - Görünür ve turuncu */
.machine-actions .btn-secondary {
    background: var(--primary-color) !important; /* Turuncu arka plan */
    color: white !important; /* Beyaz yazı */
    border: 2px solid var(--primary-color) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hover efekti */
.machine-actions .btn-secondary:hover {
    background: var(--secondary-color) !important; /* Koyu gri */
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(239, 141, 42, 0.3) !important;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-secondary {
    background: #f1f5f9;
    color: #64748b;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #475569;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* View All Button */
.hidrokon-view-all {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

/* Section CTA Button */
.section-cta {
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.section-cta .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 11 !important;
}

.section-cta .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.btn-view-all:hover::before {
    left: 0;
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hızlı ve pürüzsüz hero animasyonu - Takılma olmadan */
@keyframes fastFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-60px); /* -80px + 20px = başlangıç pozisyonu */
    }
    100% {
        opacity: 1;
        transform: translateY(-80px); /* Hedef pozisyon */
    }
}

/* Sol makine soldan pürüzsüz gelme animasyonu - Takılma düzeltildi */
@keyframes workingFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-300px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

/* Sağ makine sağdan pürüzsüz gelme animasyonu - Takılma düzeltildi */
@keyframes workingFromRight {
    0% {
        opacity: 0;
        transform: translateX(300px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

/* Responsive Design for Hidrokon Section */
@media (max-width: 992px) {
    .hidrokon-equipment-section {
        padding: 4rem 0;
    }
    
    .hidrokon-section-header h2 {
        font-size: 2.5rem;
    }
    
    .hidrokon-machines-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .machine-image-container {
        height: 250px;
    }
    
    .machine-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hidrokon-equipment-section {
        padding: 3rem 0;
    }
    
    .hidrokon-section-header {
        margin-bottom: 3rem;
    }
    
    .hidrokon-section-header h2 {
        font-size: 2rem;
    }
    
    .hidrokon-section-header p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hidrokon-filter-tabs {
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hidrokon-machines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .machine-image-container {
        height: 220px;
    }
    
    .machine-content {
        padding: 1.25rem;
    }
    
    .machine-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .machine-actions {
        width: 100%;
        justify-content: center;
    }
    
    .btn-sm {
        flex: 1;
        text-align: center;
    }
    
    .btn-view-all {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hidrokon-section-header h2 {
        font-size: 1.8rem;
    }
    
    .hidrokon-filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .machine-title {
        font-size: 1.2rem;
    }
    
    .spec-item {
        padding: 0.6rem 0;
    }
    
    .quick-action-btn {
        width: 40px;
        height: 40px;
    }
}

/* Machine Showcase Section - Completely New Names */
.machine-showcase-section {
    display: block !important;
    width: 100% !important;
    background: #f8f9fa !important;
    position: relative !important;
    padding: 6rem 0 !important;
    margin: 0 !important;
    clear: both !important;
    overflow: visible !important;
}

.machine-showcase-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.machine-showcase-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.machine-showcase-section .machine-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.machine-showcase-section .machine-item-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-height: 500px;
    border: 1px solid #e2e8f0;
}

.machine-showcase-section .machine-photo-area {
    height: 280px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.machine-showcase-section .machine-photo-area img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.machine-showcase-section .machine-item-card:hover .machine-photo-area img {
    transform: scale(1.05);
}

.machine-showcase-section .machine-info-area {
    padding: 2rem;
    text-align: left;
    background: white;
}

.machine-showcase-section .machine-stars-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.machine-showcase-section .machine-stars-rating i {
    color: #ff6b35;
    font-size: 0.9rem;
}

.machine-showcase-section .machine-info-area h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.machine-showcase-section .machine-info-area p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.machine-showcase-section .machine-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.machine-showcase-section .machine-cost-display {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.machine-showcase-section .machine-cost-display .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Inter', sans-serif;
}

.machine-showcase-section .machine-cost-display .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.machine-showcase-section .machine-action-btn {
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.machine-showcase-section .machine-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Equipment Section */
.equipment-section {
    display: block !important;
    width: 100% !important;
    background: #f0f0f0 !important;
    position: relative !important;
    padding: 6rem 0 !important;
    margin: 0 !important;
    clear: both !important;
    overflow: visible !important;
    min-height: 800px !important;
    z-index: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Equipment overlay - only for equipment section, not machine showcase */
.equipment-section .equipment-overlay {
    display: block !important;
    width: 100% !important;
    background: transparent !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: auto !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.equipment-section .section-tag {
    color: var(--primary-color);
}

.equipment-section .section-tag i {
    color: var(--secondary-color);
}

.equipment-section .section-title {
    color: var(--secondary-color);
}

.equipment-section .section-description {
    color: var(--text-color);
}

.equipment-section .section-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.equipment-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 0;
    clear: both;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-card {
    background: white !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: block !important;
    min-height: 400px;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 3;
    border: 1px solid #e0e0e0;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    height: 220px !important;
    background: linear-gradient(135deg, var(--overlay-color-1), #f0f0f0) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1)) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-divider {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    margin: 0;
}

.equipment-content {
    padding: 2rem !important;
    text-align: left !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: white !important;
}

.equipment-rating {
    display: flex !important;
    gap: 4px !important;
    margin-bottom: 1rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-rating i {
    color: var(--primary-color) !important;
    font-size: 0.9rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-content h4 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-content p {
    color: var(--text-color) !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    font-size: 0.95rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-price-section {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-price {
    display: flex !important;
    align-items: baseline !important;
    gap: 0.3rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-price .price {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    font-family: 'Inter', sans-serif !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.equipment-price .period {
    font-size: 1rem !important;
    color: var(--text-color) !important;
    font-weight: 500 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.rental-btn {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.rental-btn:hover {
    background: #d17a20;
    transform: translateY(-2px);
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.brand-item {
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 1rem;
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 3rem 0 6rem;
    background: white;
    margin-top: 75px;
}

.why-choose-header {
    text-align: left;
    margin-bottom: 2rem;
}

.why-choose-header .section-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-choose-header .section-tag i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.why-choose-header .section-title {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-choose-header .section-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.why-choose-main-content {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.why-choose-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-right {
    flex: 1;
}

.award-features-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.award-box {
    background: var(--overlay-color-2);
    padding: 1.5rem 1rem;
    border-radius: 0;
    text-align: left;
    position: relative;
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 200px;
}

.award-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.award-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.award-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.features-list {
    padding: 0;
    flex: 1;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.icon-list i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--primary-color);
    gap: 1.2rem;
}

.learn-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(3px);
}

/* Equipment Grid 2x2 - Why Choose Us sağ taraf */
.equipment-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: fit-content;
}

.equipment-card-vertical {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19);
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
}

.equipment-card-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

.equipment-card-image {
    height: 75%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-card-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.equipment-card-content {
    flex: 1;
    padding: 0.8rem 1rem 0.8rem;
    display: flex;
    flex-direction: column;
    background: var(--overlay-color-2);
    text-align: left;
}

.equipment-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.equipment-card-content p {
    color: var(--text-color);
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.equipment-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.equipment-card-link:hover {
    color: var(--secondary-color);
    gap: 0.8rem;
}

.equipment-card-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.equipment-card-link:hover i {
    transform: translateX(3px);
}

/* Equipment Services Section */
.equipment-services-section {
    padding: 4rem 0;
    background: var(--overlay-color-2);
}

/* Layout: Sol kart + Sağ 4 resim */
.equipment-services-layout {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

/* Sol taraf: Content kart */
.services-content-card {
    flex: 0 0 45%;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-content-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.services-content-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.services-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.services-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.services-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.services-cta-btn:hover {
    background: var(--secondary-color);
    gap: 1.2rem;
}

.services-cta-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

/* Sağ taraf: 4 adet equipment resmi (2x2 grid) */
.services-equipment-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.equipment-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

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

.equipment-item .equipment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(20, 20, 20, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-overlay {
    transform: translateY(0);
}

.equipment-item .equipment-overlay h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}



.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-side-image {
    position: relative;
}

.about-side-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.about-features {
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.about-content .btn-primary {
    align-self: flex-start;
    margin-top: 1.5rem;
}

/* About Content Area - Enhanced Design */
.about-content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.about-bottom-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.years-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    min-width: 120px;
}

.years-badge h6 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin: 0 0 0.5rem 0;
}

.years-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.vision-box {
    flex: 1;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.vision-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.vision-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.about-stats-highlight {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: white;
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
}

.stats-number span {
    font-size: 3rem;
    opacity: 0.8;
}

.stats-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.stats-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    margin-bottom: 4rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #d17a20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 1.8rem;
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}


/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-content {
    padding: 2rem;
}

.team-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.team-content p {
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--overlay-color-2);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 4rem 0 2rem;
}

.footer-overlay {
    background: rgba(20, 20, 20, 0.85);
    position: relative;
}

.footer-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section .contact-item {
    color: #ccc;
    margin-bottom: 0.8rem;
}

.footer-section .contact-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    color: #ccc;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0.8rem 0;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 0 !important;
    background: #000000;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible !important;
    min-height: 150px !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 2, 2, 0.7);
    z-index: 1;
}

.cta-overlay {
    padding: 3rem 0 !important;
    position: relative;
    z-index: 2;
    overflow: visible !important;
}

.cta-overlay .container {
    overflow: visible !important;
}

.cta-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: visible !important;
}

.cta-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-equipment-image {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    width: 500px;
    height: 500px;
}

.cta-equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Footer Section */
.footer-section {
    background: var(--secondary-color);
    color: white;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6b35;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-column span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Footer Contact Info Styles - Daha spesifik selector */
.footer-column .contact-info {
    display: block !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.footer-column .contact-info li {
    display: block !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 1rem !important;
    line-height: 1.6 !important;
    gap: 0 !important;
}

.footer-column .contact-info i {
    color: #ff6b35 !important;
    font-size: 1rem !important;
    width: 20px !important;
    display: inline-block !important;
    margin-right: 0.8rem !important;
    margin-bottom: 0 !important;
}

.footer-column .contact-info span,
.footer-column .contact-info a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: inline-block !important;
    vertical-align: top !important;
}

.footer-column .contact-info a:hover {
    color: #ff6b35 !important;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.footer-social a:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-column .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-column .contact-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-main-layout {
        flex-direction: column;
        gap: 2rem;
        min-height: 70vh;
    }
    
    .hero-equipment-left,
    .hero-equipment-right {
        max-width: 70%;
        order: 2;
        padding-top: 2vh;
    }
    
    .hero-equipment-left {
        display: none; /* Sol resmi mobilde gizle */
    }
    
    .hero-content {
        max-width: 90%;
        order: 1;
        padding: 0 1rem;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    
    .header-top {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav.mobile-active {
        left: 0;
    }
    
    .main-nav a {
        color: var(--accent-color);
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: 3rem;
        letter-spacing: -2px;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem 2rem;
    }
    
    .about-images-collage {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .about-text-content h2 {
        font-size: 2rem;
    }
    
    .about-bottom-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image-small {
        position: static;
        width: 150px;
        margin: 1rem auto 0;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-info li {
        font-size: 0.85rem;
    }
    
    .services-slider {
        grid-template-columns: 1fr;
    }
    
    .service-slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .service-image {
        width: 100px;
        height: 80px;
        margin: 0 auto;
    }
    
    .counter-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .counter-numbers {
        justify-content: center;
        gap: 2rem;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .rental-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
    }
    
    .machine-cards-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .why-choose-main-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .why-choose-left {
        flex: none;
    }
    
    .award-features-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .award-box {
        text-align: center;
        min-width: auto;
    }
    
    .equipment-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .counter-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .counter-content {
        text-align: center;
    }
    
    .counter-content .section-tag {
        justify-content: center;
    }
    
    .counter-numbers {
        justify-content: center;
    }
    
    .equipment-services-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-content-card {
        flex: none;
    }
    
    .services-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
    }
    
    .about-text-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content-area {
        padding: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 3rem 0 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    
    
    .counter-content h2 {
        font-size: 2.5rem !important;
        color: white !important;
        font-weight: 700;
    }
    
    .counter-content .section-title {
        font-size: 2.5rem !important;
        color: white !important;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .hero-content {
        max-width: 95%;
    }
    
    .hero-equipment-right {
        max-width: 85%;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonials-header {
        max-width: 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-info li {
        font-size: 0.8rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .service-slide-content {
        padding: 1.5em;
    }
    
    .about-feature-highlight,
    .contact-form {
        padding: 1.5rem;
    }
    
    .counter-numbers {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-number span {
        font-size: 1.8rem;
    }
    
    .counter-item h6 {
        font-size: 2.5rem;
    }
    
    .counter-content .section-title {
        font-size: 2.8rem;
    }
    
    .counter-content h2 {
        font-size: 2.8rem;
        color: white !important;
        font-weight: 700;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .rental-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    
    .machine-cards-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .why-choose-main-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .why-choose-left {
        flex: none;
    }
    
    .award-box {
        padding: 1.5rem;
        text-align: center;
    }
    
    .why-choose-header .section-title {
        font-size: 2rem;
        max-width: 100%;
    }
    
    .award-features-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .award-box {
        min-width: auto;
    }
    
    .counter-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .counter-content {
        text-align: center;
    }
    
    .counter-content .section-tag {
        justify-content: center;
    }
    
    .equipment-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .equipment-card-vertical {
        aspect-ratio: auto;
        min-height: 200px;
    }
    
    .equipment-card-content {
        padding: 1rem 0.8rem;
    }
    
    .equipment-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    
    
    .equipment-services-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-content-card {
        flex: none;
        padding: 2rem 1.5rem;
    }
    
    .services-content-card h3 {
        font-size: 1.5rem;
    }
    
    .services-equipment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .about-text-content h2 {
        font-size: 1.6rem;
    }
    
    .about-text-content p {
        font-size: 1rem;
    }
    
    .years-badge {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }
    
    .vision-box {
        padding: 1rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .counter-content h2 {
        font-size: 2rem !important;
        color: white !important;
        font-weight: 700;
    }
    
    .counter-content .section-title {
        font-size: 2rem !important;
        color: white !important;
        font-weight: 700;
    }
}

/* Referanslar Bölümü */
.referanslar-bolumu {
    padding: 1rem 0;
    background: var(--primary-color);
}

.bolum-baslik {
    text-align: center;
    margin-bottom: 1rem;
}

.baslik-etiketi {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.baslik-etiketi i {
    font-size: 1rem;
}

.bolum-baslik h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.bolum-baslik p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.referans-kartlari {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.referans-karti {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.referans-karti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 141, 42, 0.05) 0%, rgba(239, 141, 42, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.referans-karti:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.referans-karti:hover::before {
    opacity: 1;
}

.firma-logosu {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firma-logosu img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.referans-karti:hover .firma-logosu img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.firma-bilgileri {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.referans-karti:hover .firma-bilgileri {
    opacity: 1;
    transform: translateY(0);
}

.firma-adi {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.firma-sektoru {
    color: var(--text-color);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.web-sitesi-linki {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.web-sitesi-linki:hover {
    color: var(--secondary-color);
}

/* Referans Yok Uyarısı */
.referans-yok-uyarisi {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.uyari-ikonu {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.referans-yok-uyarisi h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.referans-yok-uyarisi p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.partner-item img {
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}


.partner-item:hover img {
    filter: grayscale(0%);
}

/* Testimonials Section */
.testimonials-section {
    display: block;
    width: 100%;
    padding: 6rem 0;
    background: #f8fafc;
    margin: 0;
    clear: both;
    overflow: hidden;
    position: relative;
    z-index: 4;
}

/* Testimonials başlık stilleri */
.testimonials-section .section-header h2 {
    color: #1e293b !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.testimonials-section .section-tag {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.testimonials-section .section-tag span {
    color: white !important;
}

.testimonials-section .section-tag i {
    color: white !important;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

.testimonials-slider {
    display: flex;
    animation: slideTestimonials 16s linear infinite;
    gap: 1.5rem; /* Kartlar arası boşluk */
}

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

.testimonials-slider:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 220px; /* 5 kart yan yana göstermek için optimize edildi */
    max-width: 240px; /* 5 kart yan yana göstermek için optimize edildi */
    min-height: 180px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.testimonial-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0.5rem 0 0 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #e5e7eb;
    font-size: 16px;
}

.testimonial-stars i.active {
    color: #fbbf24;
}

.author-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Modern Why Choose Us Section Styles */
.modern-why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.modern-why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.2"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.modern-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.modern-section-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.modern-section-header .section-tag i {
    font-size: 0.8rem;
    color: white;
}

.modern-section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.modern-section-header p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f39c12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

/* Filigran ikon arka planı */
.benefit-card::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 4rem;
    color: rgba(255, 107, 53, 0.08);
    z-index: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Her kart için farklı ikon */
.benefit-card:nth-child(1)::after {
    content: "\f3ed"; /* fas fa-shield-alt - Güvenilir Hizmet */
}

.benefit-card:nth-child(2)::after {
    content: "\f0ad"; /* fas fa-wrench/tools - Modern Makine Parkı */
}

.benefit-card:nth-child(3)::after {
    content: "\f3c5"; /* fas fa-headset - 7/24 Destek */
}

.benefit-card:nth-child(4)::after {
    content: "\f017"; /* fas fa-clock */
}

.benefit-card:nth-child(5)::after {
    content: "\f0a3"; /* fas fa-certificate */
}

.benefit-card:nth-child(6)::after {
    content: "\f091"; /* fas fa-award */
}

.benefit-card:hover::after {
    color: rgba(255, 107, 53, 0.12);
    transform: translateY(-50%) scale(1.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* İçeriğin z-index'ini artır */
.benefit-icon,
.benefit-content {
    position: relative;
    z-index: 2;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
}

.benefit-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.why-choose-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.3);
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ef8d2b !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.why-choose-cta .cta-content h3 {
    color: #ef8d2b !important;
}

.cta-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .benefit-card {
    padding: 2rem;
    }
    
    .why-choose-cta {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-why-choose-section {
        padding: 3rem 0;
    }
    
    .modern-section-header {
        margin-bottom: 3rem;
    }
    
    .modern-section-header h2 {
        font-size: 2.2rem;
    }
    
    .modern-section-header p {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
    
    .why-choose-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modern-section-header .section-tag {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .modern-section-header h2 {
        font-size: 1.8rem;
    }
    
    .modern-section-header p {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Modern About Us Section Styles */
.modern-about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.modern-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.modern-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content-wrapper {
    padding-right: 2rem;
}

.about-content-wrapper .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.about-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-features {
    margin-bottom: 3rem;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-features .feature-icon i {
    font-size: 1.3rem;
    color: white;
}

.about-features .feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.about-features .feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.about-stats .stat-item {
    text-align: center;
    position: relative;
}

.about-stats .stat-item::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

.about-stats .stat-item:last-child::after {
    display: none;
}

.about-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.about-cta {
    display: flex;
    gap: 1rem;
}

.btn-about-primary, .btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-about-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-about-secondary {
    background: white;
    color: #1e293b;
    border-color: #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-about-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-visual-wrapper {
    position: relative;
}

.about-main-visual {
    position: relative;
    margin-bottom: 2rem;
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-container:hover .main-about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(255, 107, 53, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.play-button-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button-modern:hover {
    background: rgba(255, 107, 53, 0.8);
    border-color: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

.play-button-modern i {
    font-size: 1.5rem;
    margin-left: 4px;
}

.overlay-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.floating-element {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-badge {
    top: -20px;
    left: -20px;
    text-align: center;
    min-width: 120px;
}

.experience-badge .badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.experience-badge .badge-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.quality-badge {
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 160px;
}

.quality-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-badge .badge-icon i {
    color: white;
    font-size: 1.1rem;
}

.quality-badge .badge-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.quality-badge .badge-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

.about-secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.secondary-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.secondary-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content-wrapper {
        padding-right: 0;
        order: 2;
    }
    
    .about-visual-wrapper {
        order: 1;
    }
    
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-about-section {
        padding: 4rem 0;
    }
    
    .modern-about-layout {
        gap: 2rem;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .about-features .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .about-features .feature-item:hover {
        transform: none;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .about-stats .stat-item::after {
        display: none;
    }
    
    .about-cta {
    flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-about-primary, .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .main-about-image {
        height: 300px;
    }
    
    .floating-element {
        position: static;
        margin: 1rem 0;
    }
    
    .experience-badge, .quality-badge {
        position: static;
        display: inline-flex;
        margin: 0.5rem;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .about-secondary-images {
        grid-template-columns: 1fr;
    }
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

/* Blog Empty State */
.blog-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.blog-empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.blog-empty-state p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.empty-state-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border-radius: 25px;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.empty-state-features .feature-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.empty-state-features .feature-item i {
    color: #ff6b35;
    font-size: 1rem;
}

/* Modern Blog Section Styles */
/* Modern FAQ Section Styles */
.modern-faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.modern-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    opacity: 0.5;
}

.faq-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-section-header .section-tag {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.faq-section-header .section-tag i {
    color: white;
}

.faq-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    position: relative;
    z-index: 2;
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover {
    background: #f8fafc;
    color: #ff6b35;
}

.faq-question.active {
    background: #f8fafc;
    color: #ff6b35;
}

.question-text {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #64748b;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover .faq-icon {
    background: #ff6b35;
    color: white;
}

.faq-question.active .faq-icon {
    background: #10b981;
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

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

.answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.answer-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ CTA */
.faq-cta {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #f39c12 50%, #10b981 100%);
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-buttons .btn-secondary {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .modern-faq-section {
        padding: 4rem 0;
    }
    
    .faq-section-header {
        margin-bottom: 3rem;
    }
    
    .faq-section-header h2 {
        font-size: 2rem;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
        border-radius: 6px;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 250px;
    }
    
    .answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* FAQ JavaScript Animation Support */
.modern-faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Blog Section Styles - Homepage */
.modern-blog-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.modern-blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom left, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.blog-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.blog-section-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.blog-section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-section-header p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.view-all-btn:hover {
    color: #e55a2b;
    transform: translateX(5px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2rem;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(255, 107, 53, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.read-more-overlay {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.read-more-overlay:hover {
    background: rgba(255, 107, 53, 0.8);
    border-color: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.blog-date, .blog-author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #ff6b35;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.blog-footer .read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-footer .read-more-btn:hover {
    color: #e55a2b;
    transform: translateX(3px);
}

.blog-footer .read-more-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.blog-footer .read-more-btn:hover i {
    transform: translateX(2px);
}

.blog-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.reading-time {
    font-weight: 500;
}

.view-count {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .blog-section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .modern-blog-section {
        padding: 4rem 0;
    }
    
    .blog-section-header {
        margin-bottom: 3rem;
    }
    
    .blog-section-header h2 {
        font-size: 2rem;
    }
    
    .blog-section-header p {
        font-size: 1.1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-image-container {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-section-header .section-tag {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .blog-section-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-section-header p {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
}

.testimonial-rating i {
    color: #000;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: #000;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-color);
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #000;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.author-info h5 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 400;
}


/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0 2rem;
    background: var(--secondary-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: var(--accent-color);
}

.contact-form h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #444;
    background: rgba(255,255,255,0.1);
    color: var(--accent-color);
    border-radius: 4px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: var(--accent-color);
    margin: 0;
}

/* About Us Page Styles */
.page-header {
    background: var(--primary-color);
    background-image: url('assets/images/O4.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 141, 42, 0.75);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Main Section */
.about-main-section {
    padding: 6rem 0;
    background: var(--accent-color);
}

.about-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-main-image {
    position: relative;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-main-image:hover .about-video-overlay {
    opacity: 1;
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-button:hover {
    transform: scale(1.1);
}

.video-play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}

.about-main-content {
    padding-left: 2rem;
}

.about-main-content .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.about-main-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-main-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.about-feature span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.about-stats {
    margin-bottom: 2rem;
}

.about-stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-stat span {
    color: var(--text-color);
    font-size: 1rem;
}

.about-vision {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.about-vision h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-vision p {
    color: var(--text-color);
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.why-choose-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.why-choose-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-choose-item h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background-image: url('assets/images/stats-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 6rem 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.4);
    z-index: 1;
}

.stats-overlay {
    position: relative;
    z-index: 2;
}

.stats-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-content {
    color: white;
}

.stats-content .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.stats-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.stats-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stats-numbers {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: #ccc;
    font-size: 1rem;
}

/* Team Preview Section */
.team-preview-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.team-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-info {
    padding: 2rem;
    text-align: center;
}

.team-member-info h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-main-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main-content {
        padding-left: 0;
    }
    
    .about-main-content h2 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-numbers {
        flex-direction: column;
        gap: 1rem;
    }
    
    .team-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main-image {
        height: 400px;
    }
}


/* Icon Styles */
.icon {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
}

.icon-minus::before {
    content: '—';
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Section Tag Styles */
.section-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-tag span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tag {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-tag .icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}


/* Equipment Services Grid */
.equipment-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .equipment-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}


/* Fix Why Choose Right Section */
.why-choose-right {
    flex: 1;
    width: 50%;
}

.why-choose-left {
    flex: 1;
    width: 50%;
}


/* About Images Collage - Enhanced Design */
.about-images-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 500px;
    width: 100%;
    position: relative;
}

.about-main-image {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

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

.about-main-image:hover img {
    transform: scale(1.05);
}

.about-video-thumbnail {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(10px);
}

.about-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-video-thumbnail:hover img {
    transform: scale(1.05);
}

.about-bottom-image {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

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

.about-bottom-image:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 107, 53, 1);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.play-button i {
    color: white;
    font-size: 1.4rem;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .about-images-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
        gap: 1rem;
    }
    
    .about-main-image,
    .about-video-thumbnail,
    .about-bottom-image {
        grid-column: 1 / 2;
        height: 200px;
    }
    
    .about-main-image {
        grid-row: 1 / 2;
    }
    
    .about-video-thumbnail {
        grid-row: 2 / 3;
    }
    
    .about-bottom-image {
        grid-row: 3 / 4;
    }
}

/* Compact Blog Grid for Homepage */
.compact-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.compact-blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.compact-blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.compact-blog-content {
    padding: 1.5rem;
}

.compact-blog-content .blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.compact-blog-content .blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.compact-blog-content .blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.compact-blog-content .blog-title a:hover {
    color: #ff6b35;
}

.compact-blog-content .blog-excerpt {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.compact-blog-content .blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.compact-blog-content .read-more-btn {
    background: #ff6b35;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.compact-blog-content .read-more-btn:hover {
    background: #e55a2b;
    color: white !important;
}

.compact-blog-content .view-count {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* No Blog Posts State */
.no-blog-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    grid-column: 1 / -1;
}

.no-posts-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.no-blog-posts h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 1rem;
}

.no-blog-posts p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
}

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

@media (max-width: 768px) {
    .compact-blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-detail-breadcrumb {
    margin-bottom: 1rem;
}

.blog-detail-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.blog-detail-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
}

.blog-detail-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.blog-detail-breadcrumb .breadcrumb-item.active {
    color: #1e293b;
    font-weight: 600;
}

.blog-detail-header {
    max-width: 100%;
}

.blog-detail-header .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-detail-header .blog-meta span {
    color: #64748b;
    font-size: 0.85rem;
}

.blog-detail-header .blog-category {
    background: #ff6b35;
    color: white !important;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

.blog-detail-header .blog-title {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.blog-detail-header .blog-excerpt {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-content-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.blog-article {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.blog-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

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

.blog-featured-image:hover img {
    transform: scale(1.03);
}

.blog-article-content {
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-article-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.blog-article-content ul, .blog-article-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
}

.blog-article-footer {
    padding: 2rem 3rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.tag {
    background: #e2e8f0;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Related Posts - REMOVED (now using vertical-posts in sidebar) */

/* Old Blog Sidebar - REMOVED (using blog-sidebar-vertical now) */

/* Recent Posts Compact - REMOVED (now using vertical-posts) */

/* Old Sidebar Styles - REMOVED (using vertical sidebar now) */

/* Blog Sidebar Right - BASIT VE TEMİZ */
.blog-sidebar-right {
    padding-left: 1rem;
}

.sidebar-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ff6b35;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-title i {
    color: #ff6b35;
}

.mini-card {
    display: block;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    height: 100%;
}

.mini-card:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.15);
}

.mini-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.mini-card-placeholder {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.5rem;
}

.mini-card-body {
    padding: 0.75rem;
}

.mini-card-body h6 {
    font-size: 0.8rem;
    color: #1e293b;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.mini-card:hover .mini-card-body h6 {
    color: #ff6b35;
}

.mini-card-body small {
    font-size: 0.65rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    color: white;
    text-align: center;
}

.sidebar-cta i {
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sidebar-cta h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.95);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.sidebar-cta .btn-light {
    background: white;
    color: #ff6b35;
    font-weight: 600;
    border: none;
}

.sidebar-cta .btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Blog Detail Responsive */
@media (max-width: 992px) {
    .blog-sidebar-right {
        padding-left: 0;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 1.5rem 0 2rem;
    }
    
    .blog-title {
        font-size: 1.75rem;
    }
    
    .blog-meta {
        gap: 0.75rem;
        font-size: 0.85rem;
    }
    
    .blog-featured-image {
        height: 300px;
    }
    
    .blog-article-content {
        padding: 2rem 1.5rem;
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .blog-article-footer {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sidebar-widget-vertical {
        padding: 1rem;
    }
    
    .vertical-post-thumb {
        height: 120px;
    }
}
