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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

.header {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px 375px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05) rotate(2deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    position: relative;
    padding-bottom: 5px;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu>li>a:hover::after {
    width: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff8c00;
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 120%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 15px 0;
    min-width: 220px;
    z-index: 1000;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dropdown.active .dropdown-menu {
    display: none !important;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.dropdown-menu li:hover {
    transform: translateX(5px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #333;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #ff8c00, #ff6600);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.1), transparent);
    color: #ff8c00;
}

.btn-teklif {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-teklif::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-teklif:hover::before {
    left: 100%;
}

.btn-teklif:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.5);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Responsive Design */
@media screen and (max-width: 1600px) {
    .header {
        padding: 20px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .header {
        padding: 20px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .header {
        padding: 20px 80px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 15px;
    }
}

@media screen and (max-width: 1024px) {
    .header {
        padding: 20px 40px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .btn-teklif {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-right {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 75px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 0;
        overflow-y: auto;
        z-index: 998;
        display: none;
    }
    
    .navbar-right.active {
        display: flex;
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu>li>a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    .nav-menu>li>a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 10px 20px;
        border-radius: 0;
        background: transparent;
        min-width: auto;
        opacity: 1;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: none !important;
        max-height: 500px;
    }

    .dropdown-menu li {
        border: none;
    }

    .dropdown-menu li:hover {
        transform: none;
    }

    .dropdown-menu a {
        padding: 10px 0;
        font-size: 14px;
    }

    .dropdown-menu a::before {
        display: none;
    }

    .btn-teklif {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 15px;
    }

    .logo img {
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 12px 15px;
    }

    .logo img {
        height: 35px;
    }

    .navbar-right {
        width: 100%;
        right: -100%;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide:nth-child(1) {
    background-image: url('../resimler/slider/toreksan-torbali-reklam-1.jpg');
}

.slide:nth-child(2) {
    background-image: url('../resimler/slider/toreksan-torbali-reklam-2.jpg');
}

.slide:nth-child(3) {
    background-image: url('../resimler/slider/toreksan-torbali-reklam-3.jpg');
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    animation: slideUp 0.8s ease-out;
}

.slide.active .slide-content {
    animation: slideUp 0.8s ease-out;
}

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

.slide-title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.slide-description {
    font-size: 24px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.slide-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.slide-btn:hover::before {
    left: 100%;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.6);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

.dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Slider */
@media screen and (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 48px;
    }
    
    .slide-description {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .slide-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
}

/* Hakkımızda Section */
.hakkimizda-section {
    padding: 100px 375px;
    background-color: #f9f9f9;
}

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

.hakkimizda-image {
    position: relative;
}

.hakkimizda-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.hakkimizda-content {
    padding: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    border-radius: 2px;
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.hakkimizda-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.hakkimizda-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
}

/* Responsive Hakkımızda */
@media screen and (max-width: 1600px) {
    .hakkimizda-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .hakkimizda-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .hakkimizda-section {
        padding: 80px 80px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .hakkimizda-section {
        padding: 60px 40px;
    }
    
    .hakkimizda-container {
        gap: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .hakkimizda-section {
        padding: 60px 20px;
    }
    
    .hakkimizda-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-text {
        font-size: 15px;
    }
    
    .hakkimizda-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .hakkimizda-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-text {
        font-size: 14px;
    }
}

/* Hizmetlerimiz Section */
.hizmetlerimiz-section {
    padding: 100px 375px;
    background-color: #ffffff;
}

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

.section-title-center {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    border-radius: 2px;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.hizmet-card {
    background: #ffffff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hizmet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.hizmet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
}

.hizmet-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.hizmet-card:hover .hizmet-image img {
    transform: scale(1.1);
}

.hizmet-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
    padding: 25px 30px 0;
}

.hizmet-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    padding: 0 30px;
}

.hizmet-link {
    display: inline-block;
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 30px 30px;
}

.hizmet-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transition: width 0.3s ease;
}

.hizmet-link:hover::after {
    width: 100%;
}

.hizmet-link:hover {
    color: #ff6600;
}

/* Responsive Hizmetlerimiz */
@media screen and (max-width: 1600px) {
    .hizmetlerimiz-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .hizmetlerimiz-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .hizmetlerimiz-section {
        padding: 80px 80px;
    }
    
    .section-title-center {
        font-size: 40px;
    }
    
    .hizmetler-grid {
        gap: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .hizmetlerimiz-section {
        padding: 60px 40px;
    }
    
    .hizmetler-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title-center {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .hizmetlerimiz-section {
        padding: 60px 20px;
    }
    
    .hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title-center {
        font-size: 32px;
    }
    
    .hizmet-card {
        padding: 40px 25px;
    }
    
    .hizmet-title {
        font-size: 20px;
    }
    
    .hizmet-description {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .hizmetlerimiz-section {
        padding: 40px 15px;
    }
    
    .section-title-center {
        font-size: 28px;
    }
    
    .hizmet-card {
        padding: 30px 20px;
    }
    
    .hizmet-image {
        height: 180px;
    }
    
    .hizmet-title {
        font-size: 18px;
    }
    
    .hizmet-description {
        font-size: 14px;
    }
}

/* Örnek İşlerimiz Section */
.islerimiz-section {
    padding: 100px 375px;
    background-color: #f9f9f9;
}

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

.islerimiz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.is-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.is-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 102, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.is-item:hover .is-overlay {
    opacity: 1;
}

.is-item:hover img {
    transform: scale(1.1);
}

.is-content h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.is-item:hover .is-content h3 {
    transform: translateY(0);
}

/* Responsive İşlerimiz */
@media screen and (max-width: 1600px) {
    .islerimiz-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .islerimiz-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .islerimiz-section {
        padding: 80px 80px;
    }
    
    .islerimiz-grid {
        gap: 25px;
    }
}

@media screen and (max-width: 1024px) {
    .islerimiz-section {
        padding: 60px 40px;
    }
    
    .islerimiz-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .islerimiz-section {
        padding: 60px 20px;
    }
    
    .islerimiz-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .is-content h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .islerimiz-section {
        padding: 40px 15px;
    }
    
    .islerimiz-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .is-content h3 {
        font-size: 18px;
    }
}

/* İstatistik Section */
.istatistik-section {
    position: relative;
    padding: 100px 375px;
    background-image: url('../resimler/torbali-reklam.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.istatistik-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 102, 0, 0.9));
    z-index: 1;
}

.istatistik-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-title-center-white {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title-center-white::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 40px;
}

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

.istatistik-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.istatistik-item:hover .istatistik-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotateY(360deg);
}

.istatistik-icon i {
    font-size: 40px;
    color: white;
}

.istatistik-number {
    font-size: 64px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.istatistik-number::after {
    content: '%';
    font-size: 48px;
    margin-left: 5px;
}

.istatistik-label {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.istatistik-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.istatistik-progress {
    height: 100%;
    background: white;
    border-radius: 10px;
    width: 0;
    transition: width 2s ease;
}

/* Responsive İstatistik */
@media screen and (max-width: 1600px) {
    .istatistik-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .istatistik-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .istatistik-section {
        padding: 80px 80px;
    }
    
    .section-title-center-white {
        font-size: 40px;
    }
    
    .istatistik-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .istatistik-section {
        padding: 60px 40px;
    }
    
    .istatistik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .section-title-center-white {
        font-size: 36px;
    }
    
    .istatistik-number {
        font-size: 56px;
    }
}

@media screen and (max-width: 768px) {
    .istatistik-section {
        padding: 60px 20px;
        background-attachment: scroll;
    }
    
    .istatistik-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title-center-white {
        font-size: 32px;
    }
    
    .istatistik-number {
        font-size: 48px;
    }
    
    .istatistik-label {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .istatistik-section {
        padding: 40px 15px;
    }
    
    .section-title-center-white {
        font-size: 28px;
    }
    
    .istatistik-number {
        font-size: 42px;
    }
    
    .istatistik-label {
        font-size: 16px;
    }
    
    .istatistik-icon {
        width: 70px;
        height: 70px;
    }
    
    .istatistik-icon i {
        font-size: 35px;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 375px;
    background-color: #ffffff;
}

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

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

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: left;
}

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

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 14px;
}

.blog-date svg {
    color: #ff8c00;
}

.blog-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #ff8c00;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-block;
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transition: width 0.3s ease;
}

.blog-link:hover::after {
    width: 100%;
}

.blog-cta {
    margin-top: 60px;
}

.blog-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.blog-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
}

/* Responsive Blog */
@media screen and (max-width: 1600px) {
    .blog-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .blog-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .blog-section {
        padding: 80px 80px;
    }
    
    .blog-grid {
        gap: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .blog-section {
        padding: 60px 40px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .blog-section {
        padding: 60px 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image {
        height: 220px;
    }
    
    .blog-content {
        padding: 25px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-excerpt {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .blog-section {
        padding: 40px 15px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
    
    .blog-cta {
        margin-top: 40px;
    }
    
    .blog-all-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Yorumlar Section */
.yorumlar-section {
    padding: 100px 375px;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.yorumlar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.yorumlar-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.yorumlar-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 50px;
}

.yorumlar-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
    perspective: 1000px;
    min-height: 400px;
}

.yorum-card {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid #f0f0f0;
    pointer-events: none;
}

.yorum-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.yorum-card.prev {
    transform: translateX(-100px) scale(0.9);
}

.yorum-card:hover {
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateX(0) scale(1) translateY(-5px);
}

.yorum-stars {
    font-size: 36px;
    margin-bottom: 30px;
    letter-spacing: 8px;
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.yorum-text {
    font-size: 20px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    padding: 0 40px;
}

.yorum-text::before,
.yorum-text::after {
    font-size: 100px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
    font-weight: bold;
}

.yorum-text::before {
    content: '"';
    top: -40px;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.yorum-text::after {
    content: '"';
    bottom: -60px;
    right: 0;
    animation: float 3s ease-in-out infinite reverse;
}

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

.yorum-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    animation: fadeInScale 0.8s ease 0.3s both;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.yorum-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #ff8c00, #ff6600) border-box;
    position: relative;
    transition: all 0.4s ease;
}

.yorum-avatar::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.yorum-card:hover .yorum-avatar::after {
    opacity: 0.7;
}

.yorum-card:hover .yorum-avatar {
    transform: scale(1.1) rotate(5deg);
}

.yorum-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yorum-info {
    text-align: left;
}

.yorum-name {
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(135deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.yorum-company {
    font-size: 16px;
    color: #ff8c00;
    font-weight: 500;
}

.yorumlar-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.yorum-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.yorum-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 0, 0.5);
    opacity: 0;
    transition: all 0.4s ease;
}

.yorum-dot.active {
    background: #ff8c00;
    width: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5);
}

.yorum-dot.active::before {
    opacity: 1;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.yorum-dot:hover {
    background: rgba(255, 140, 0, 0.6);
    transform: scale(1.2);
}

/* Responsive Yorumlar */
@media screen and (max-width: 1600px) {
    .yorumlar-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .yorumlar-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .yorumlar-section {
        padding: 80px 80px;
    }
}

@media screen and (max-width: 1024px) {
    .yorumlar-section {
        padding: 60px 40px;
    }
    
    .yorum-card {
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .yorumlar-section {
        padding: 60px 20px;
    }
    
    .yorum-card {
        padding: 30px;
    }
    
    .yorum-text {
        font-size: 16px;
    }
    
    .yorum-stars {
        font-size: 28px;
    }
    
    .yorumlar-subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .yorumlar-section {
        padding: 40px 15px;
    }
    
    .yorum-card {
        padding: 25px;
    }
    
    .yorum-text {
        font-size: 15px;
    }
    
    .yorum-text::before {
        font-size: 60px;
        top: -20px;
    }
    
    .yorum-stars {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .yorum-avatar {
        width: 60px;
        height: 60px;
    }
    
    .yorum-name {
        font-size: 18px;
    }
    
    .yorum-company {
        font-size: 14px;
    }
    
    .yorumlar-dots {
        gap: 10px;
        margin-top: 30px;
    }
    
    .yorum-dot {
        width: 10px;
        height: 10px;
    }
    
    .yorum-dot.active {
        width: 30px;
    }
}

/* Yorumlar Navigation Buttons */
.yorumlar-controls {
    position: absolute;
    top: 50%;
    left: -80px;
    right: -80px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.yorum-prev,
.yorum-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ff8c00;
    color: #ff8c00;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.yorum-prev:hover,
.yorum-next:hover {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

.yorum-prev:active,
.yorum-next:active {
    transform: scale(0.95);
}

@media screen and (max-width: 1024px) {
    .yorumlar-controls {
        padding: 0 10px;
    }
    
    .yorum-prev,
    .yorum-next {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .yorumlar-controls {
        position: static;
        transform: none;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .yorum-prev,
    .yorum-next {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3561 0%, #3f4a73 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.footer-top {
    padding: 80px 375px 60px;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

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

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link svg {
    position: relative;
    z-index: 1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.5);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff8c00;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.footer-contact li:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 12px;
}

.footer-contact svg {
    color: #ff8c00;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 2px 5px rgba(255, 140, 0, 0.3));
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 25px 375px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8);
    }
}

/* Responsive Footer */
@media screen and (max-width: 1600px) {
    .footer-top {
        padding: 80px 250px 60px;
    }
    
    .footer-bottom {
        padding: 25px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .footer-top {
        padding: 80px 150px 60px;
    }
    
    .footer-bottom {
        padding: 25px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .footer-top {
        padding: 60px 80px 40px;
    }
    
    .footer-bottom {
        padding: 20px 80px;
    }
    
    .footer-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .footer-top {
        padding: 60px 40px 40px;
    }
    
    .footer-bottom {
        padding: 20px 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        padding: 50px 20px 30px;
    }
    
    .footer-bottom {
        padding: 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer-top {
        padding: 40px 15px 25px;
    }
    
    .footer-bottom {
        padding: 15px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}


/* ===== SAYFA BAŞLIĞI ===== */
.page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.50), rgba(255, 102, 0, 0.50)), url('../resimler/torbali-reklam-hizmetler-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

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

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

/* ===== HİZMETLER SAYFA ===== */
.hizmetler-page-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.hizmetler-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.hizmet-page-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.hizmet-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
}

.hizmet-page-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.hizmet-page-card:hover .hizmet-page-image img {
    transform: scale(1.1);
}

.hizmet-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 102, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hizmet-page-card:hover .hizmet-page-overlay {
    opacity: 1;
}

.hizmet-page-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8c00;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.hizmet-page-link:hover {
    transform: scale(1.1);
}

.hizmet-page-content {
    padding: 30px;
}

.hizmet-page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.hizmet-page-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.hizmet-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hizmet-page-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #ff8c00;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        height: 300px;
    }
    
    .page-header-content h1 {
        font-size: 36px;
    }
    
    .page-header-content p {
        font-size: 16px;
    }
    
    .hizmetler-page-section {
        padding: 60px 0;
    }
    
    .hizmetler-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}


/* ===== HİZMET DETAY SAYFA ===== */
.hizmet-detay-section {
    padding: 100px 0;
    background: #ffffff;
}

.hizmet-detay-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.hizmet-detay-content {
    background: white;
}

.hizmet-detay-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hizmet-detay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmet-detay-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

.hizmet-detay-text h2,
.hizmet-detay-text h3 {
    color: #ff8c00;
    margin: 30px 0 20px;
}

.hizmet-detay-text p {
    margin-bottom: 20px;
}

.hizmet-detay-text ul,
.hizmet-detay-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.hizmet-detay-text li {
    margin-bottom: 10px;
}

.hizmet-detay-cta {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.hizmet-detay-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hizmet-detay-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hizmet-detay-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: white;
    color: #ff8c00;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hizmet-detay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== SIDEBAR ===== */
.hizmet-detay-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff8c00;
}

.hizmet-list {
    list-style: none;
}

.hizmet-list li {
    margin-bottom: 15px;
}

.hizmet-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hizmet-list a:hover {
    background: #fff5e6;
    color: #ff8c00;
    transform: translateX(5px);
}

.hizmet-list i {
    color: #ff8c00;
    font-size: 12px;
}

.sidebar-cta {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    text-align: center;
}

.sidebar-cta .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.sidebar-cta p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    color: #ff8c00;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hizmet-detay-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hizmet-detay-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hizmet-detay-section {
        padding: 60px 0;
    }
    
    .hizmet-detay-image {
        height: 300px;
    }
    
    .hizmet-detay-text {
        font-size: 16px;
    }
    
    .hizmet-detay-cta {
        padding: 30px 20px;
    }
    
    .hizmet-detay-cta h3 {
        font-size: 22px;
    }
}


/* ===== HAKKIMIZDA SAYFA ===== */
.breadcrumb-section {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 102, 0, 0.9)), url('../resimler/torbali-reklam.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.breadcrumb-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

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

.breadcrumb-nav a:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    opacity: 0.7;
}

.breadcrumb-current {
    opacity: 0.9;
}

/* Hakkımızda Detay Section */
.hakkimizda-detay-section {
    padding: 100px 375px;
    background-color: #ffffff;
}

.hakkimizda-detay-container {
    max-width: 100%;
}

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

.hakkimizda-detay-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hakkimizda-detay-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hakkimizda-detay-image:hover img {
    transform: scale(1.05);
}

.hakkimizda-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 102, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hakkimizda-detay-image:hover .hakkimizda-image-overlay {
    opacity: 1;
}

.hakkimizda-detay-content {
    padding: 20px;
}

.hakkimizda-detay-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.hakkimizda-detay-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    border-radius: 2px;
}

.hakkimizda-detay-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.hakkimizda-detay-text p {
    margin-bottom: 20px;
}

.hakkimizda-detay-text strong,
.hakkimizda-detay-text b {
    color: #333;
}

.no-content {
    text-align: center;
    padding: 100px 20px;
    color: #999;
    font-size: 18px;
}

/* Neden Biz Section */
.neden-biz-section {
    padding: 100px 375px;
    background-color: #f9f9f9;
}

.neden-biz-container {
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 50px;
}

.neden-biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.neden-biz-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.neden-biz-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
}

.neden-biz-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.neden-biz-card:hover .neden-biz-icon {
    transform: scale(1.1) rotateY(360deg);
}

.neden-biz-icon i {
    font-size: 40px;
    color: white;
}

.neden-biz-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.neden-biz-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 375px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.cta-container {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

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

.cta-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-primary {
    background: white;
    color: #ff8c00;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #ff8c00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.section-subtitle-white {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    margin-bottom: 50px;
}

/* ===== RESPONSIVE HAKKIMIZDA ===== */
@media screen and (max-width: 1600px) {
    .breadcrumb-section {
        height: 280px;
    }
    
    .hakkimizda-detay-section {
        padding: 80px 250px;
    }
    
    .neden-biz-section {
        padding: 80px 250px;
    }
    
    .cta-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .hakkimizda-detay-section {
        padding: 80px 150px;
    }
    
    .neden-biz-section {
        padding: 80px 150px;
    }
    
    .cta-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .breadcrumb-title {
        font-size: 48px;
    }
    
    .hakkimizda-detay-section {
        padding: 80px 80px;
    }
    
    .hakkimizda-detay-title {
        font-size: 36px;
    }
    
    .neden-biz-section {
        padding: 80px 80px;
    }
    
    .neden-biz-grid {
        gap: 30px;
    }
    
    .cta-section {
        padding: 80px 80px;
    }
    
    .cta-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .breadcrumb-section {
        height: 250px;
    }
    
    .breadcrumb-title {
        font-size: 42px;
    }
    
    .hakkimizda-detay-section {
        padding: 60px 40px;
    }
    
    .hakkimizda-detay-grid {
        gap: 40px;
    }
    
    .neden-biz-section {
        padding: 60px 40px;
    }
    
    .neden-biz-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        padding: 60px 40px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .breadcrumb-section {
        height: 220px;
    }
    
    .breadcrumb-title {
        font-size: 36px;
    }
    
    .breadcrumb-nav {
        font-size: 14px;
    }
    
    .hakkimizda-detay-section {
        padding: 60px 20px;
    }
    
    .hakkimizda-detay-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hakkimizda-detay-title {
        font-size: 32px;
    }
    
    .hakkimizda-detay-text {
        font-size: 16px;
    }
    
    .neden-biz-section {
        padding: 60px 20px;
    }
    
    .neden-biz-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .neden-biz-card {
        padding: 35px 25px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .breadcrumb-section {
        height: 200px;
    }
    
    .breadcrumb-title {
        font-size: 28px;
    }
    
    .hakkimizda-detay-section {
        padding: 40px 15px;
    }
    
    .hakkimizda-detay-title {
        font-size: 28px;
    }
    
    .hakkimizda-detay-text {
        font-size: 15px;
    }
    
    .neden-biz-section {
        padding: 40px 15px;
    }
    
    .neden-biz-card {
        padding: 30px 20px;
    }
    
    .neden-biz-icon {
        width: 70px;
        height: 70px;
    }
    
    .neden-biz-icon i {
        font-size: 35px;
    }
    
    .neden-biz-title {
        font-size: 20px;
    }
    
    .neden-biz-text {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 15px 40px;
        font-size: 16px;
    }
}


/* ===== BLOG SAYFA ===== */
.blog-page-section {
    padding: 100px 375px;
    background-color: #f9f9f9;
}

.blog-page-container {
    max-width: 100%;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-page-content {
    width: 100%;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-list-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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

.blog-list-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-list-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.blog-list-content {
    padding: 30px;
}

.blog-list-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-list-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 14px;
}

.blog-list-date svg {
    color: #ff8c00;
}

.blog-list-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-list-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-list-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-list-link {
    display: inline-block;
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-list-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transition: width 0.3s ease;
}

.blog-list-link:hover::after {
    width: 100%;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pagination-btn:hover {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pagination-number:hover,
.pagination-number.active {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

/* Blog Sidebar */
.blog-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kategori-list {
    list-style: none;
}

.kategori-list li {
    margin-bottom: 12px;
}

.kategori-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.kategori-list a:hover {
    background: #fff5e6;
    color: #ff8c00;
    transform: translateX(5px);
}

.kategori-list i {
    color: #ff8c00;
    font-size: 14px;
}

.son-yazilar-list {
    list-style: none;
}

.son-yazilar-list li {
    margin-bottom: 20px;
}

.son-yazi-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.son-yazi-item:hover {
    transform: translateX(5px);
}

.son-yazi-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.son-yazi-item:hover .son-yazi-image img {
    transform: scale(1.1);
}

.son-yazi-content {
    flex: 1;
}

.son-yazi-content h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.son-yazi-item:hover .son-yazi-content h4 {
    color: #ff8c00;
}

.son-yazi-date {
    font-size: 13px;
    color: #999;
}

/* ===== RESPONSIVE BLOG ===== */
@media screen and (max-width: 1600px) {
    .blog-page-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .blog-page-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .blog-page-section {
        padding: 80px 80px;
    }
    
    .blog-list-grid {
        gap: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .blog-page-section {
        padding: 60px 40px;
    }
    
    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-page-sidebar {
        order: 2;
    }
    
    .blog-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .blog-page-section {
        padding: 60px 20px;
    }
    
    .blog-list-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-list-image {
        height: 220px;
    }
    
    .blog-list-content {
        padding: 25px;
    }
    
    .blog-list-title {
        font-size: 20px;
    }
    
    .blog-list-excerpt {
        font-size: 15px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pagination-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .pagination-number {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .blog-page-section {
        padding: 40px 15px;
    }
    
    .blog-list-image {
        height: 200px;
    }
    
    .blog-list-content {
        padding: 20px;
    }
    
    .blog-list-title {
        font-size: 18px;
    }
    
    .blog-list-excerpt {
        font-size: 14px;
    }
    
    .pagination-numbers {
        gap: 5px;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}


/* ===== BLOG DETAY SAYFA ===== */
.blog-detay-section {
    padding: 100px 375px;
    background-color: #ffffff;
}

.blog-detay-container {
    max-width: 100%;
}

.blog-detay-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    margin-bottom: 80px;
}

.blog-detay-content {
    background: white;
}

.blog-detay-header {
    margin-bottom: 30px;
}

.blog-detay-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-detay-category,
.blog-detay-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.blog-detay-category i,
.blog-detay-date i {
    color: #ff8c00;
}

.blog-detay-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-detay-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-detay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detay-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

.blog-detay-text p {
    margin-bottom: 20px;
}

.blog-detay-text h2,
.blog-detay-text h3 {
    color: #ff8c00;
    margin: 30px 0 20px;
}

.blog-detay-text ul,
.blog-detay-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detay-text li {
    margin-bottom: 10px;
}

.blog-detay-text strong,
.blog-detay-text b {
    color: #333;
}

/* Paylaş Butonları */
.blog-detay-share {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 20px;
    text-align: center;
}

.blog-detay-share h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Blog Detay Sidebar */
.blog-detay-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* İlgili Yazılar */
.ilgili-yazilar-section {
    margin-top: 80px;
    text-align: center;
}

.ilgili-yazilar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.ilgili-yazi-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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

.ilgili-yazi-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.ilgili-yazi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ilgili-yazi-card:hover .ilgili-yazi-image img {
    transform: scale(1.1);
}

.ilgili-yazi-content {
    padding: 25px;
    text-align: left;
}

.ilgili-yazi-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.ilgili-yazi-date i {
    color: #ff8c00;
}

.ilgili-yazi-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ilgili-yazi-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ilgili-yazi-title a:hover {
    color: #ff8c00;
}

.ilgili-yazi-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.ilgili-yazi-link {
    display: inline-block;
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.ilgili-yazi-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transition: width 0.3s ease;
}

.ilgili-yazi-link:hover::after {
    width: 100%;
}

/* ===== RESPONSIVE BLOG DETAY ===== */
@media screen and (max-width: 1600px) {
    .blog-detay-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .blog-detay-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .blog-detay-section {
        padding: 80px 80px;
    }
    
    .blog-detay-title {
        font-size: 36px;
    }
    
    .ilgili-yazilar-grid {
        gap: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .blog-detay-section {
        padding: 60px 40px;
    }
    
    .blog-detay-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-detay-sidebar {
        order: 2;
    }
    
    .blog-detay-title {
        font-size: 32px;
    }
    
    .blog-detay-image {
        height: 400px;
    }
    
    .ilgili-yazilar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .blog-detay-section {
        padding: 60px 20px;
    }
    
    .blog-detay-title {
        font-size: 28px;
    }
    
    .blog-detay-image {
        height: 300px;
    }
    
    .blog-detay-text {
        font-size: 16px;
    }
    
    .blog-detay-share {
        padding: 25px 20px;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .ilgili-yazilar-section {
        margin-top: 60px;
    }
    
    .ilgili-yazilar-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media screen and (max-width: 480px) {
    .blog-detay-section {
        padding: 40px 15px;
    }
    
    .blog-detay-title {
        font-size: 24px;
    }
    
    .blog-detay-image {
        height: 250px;
    }
    
    .blog-detay-text {
        font-size: 15px;
    }
    
    .blog-detay-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-detay-share h3 {
        font-size: 18px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .ilgili-yazi-image {
        height: 200px;
    }
}


/* ===== SSS SAYFA ===== */
.sss-hero {
    padding: 80px 375px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
}

.sss-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.sss-hero-content {
    position: relative;
}

.sss-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 140, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(255, 140, 0, 0.5);
    }
}

.sss-hero-icon i {
    font-size: 50px;
    color: white;
}

.sss-hero-content h2 {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.sss-hero-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* SSS Section */
.sss-section {
    padding: 80px 375px;
    background-color: #ffffff;
}

.sss-container {
    max-width: 100%;
}

.sss-kategori {
    margin-bottom: 60px;
}

.sss-kategori:last-child {
    margin-bottom: 0;
}

.sss-kategori-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #ff8c00;
}

.sss-kategori-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sss-kategori-icon i {
    font-size: 28px;
    color: white;
}

.sss-kategori-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

/* SSS Accordion */
.sss-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.sss-item:hover {
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.15);
}

.sss-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.sss-item:hover .sss-question {
    background: #fff5e6;
}

.sss-item.active .sss-question {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
}

.sss-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
    flex: 1;
    padding-right: 20px;
}

.sss-item.active .sss-question-text {
    color: white;
}

.sss-question-icon {
    width: 35px;
    height: 35px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sss-item.active .sss-question-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.sss-question-icon i {
    font-size: 14px;
    color: #ff8c00;
    transition: color 0.3s ease;
}

.sss-item.active .sss-question-icon i {
    color: white;
}

.sss-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f9f9f9;
}

.sss-item.active .sss-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.sss-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* SSS CTA Section */
.sss-cta-section {
    padding: 100px 375px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    position: relative;
    overflow: hidden;
}

.sss-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.sss-cta-container {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

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

.sss-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.sss-cta-icon i {
    font-size: 40px;
    color: white;
}

.sss-cta-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.sss-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.sss-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-sss-primary,
.btn-sss-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-sss-primary {
    background: white;
    color: #ff8c00;
}

.btn-sss-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-sss-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-sss-secondary:hover {
    background: white;
    color: #ff8c00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE SSS ===== */
@media screen and (max-width: 1600px) {
    .sss-hero {
        padding: 60px 250px;
    }
    
    .sss-section {
        padding: 60px 250px;
    }
    
    .sss-cta-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .sss-hero {
        padding: 60px 150px;
    }
    
    .sss-section {
        padding: 60px 150px;
    }
    
    .sss-cta-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .sss-hero {
        padding: 60px 80px;
    }
    
    .sss-hero-content h2 {
        font-size: 36px;
    }
    
    .sss-section {
        padding: 60px 80px;
    }
    
    .sss-kategori-title {
        font-size: 28px;
    }
    
    .sss-cta-section {
        padding: 80px 80px;
    }
    
    .sss-cta-content h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 1024px) {
    .sss-hero {
        padding: 50px 40px;
    }
    
    .sss-hero-content h2 {
        font-size: 32px;
    }
    
    .sss-section {
        padding: 50px 40px;
    }
    
    .sss-kategori {
        margin-bottom: 50px;
    }
    
    .sss-kategori-title {
        font-size: 26px;
    }
    
    .sss-cta-section {
        padding: 60px 40px;
    }
    
    .sss-cta-content h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .sss-hero {
        padding: 50px 20px;
    }
    
    .sss-hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .sss-hero-icon i {
        font-size: 40px;
    }
    
    .sss-hero-content h2 {
        font-size: 28px;
    }
    
    .sss-hero-content p {
        font-size: 16px;
    }
    
    .sss-section {
        padding: 50px 20px;
    }
    
    .sss-kategori-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sss-kategori-icon {
        width: 50px;
        height: 50px;
    }
    
    .sss-kategori-icon i {
        font-size: 24px;
    }
    
    .sss-kategori-title {
        font-size: 24px;
    }
    
    .sss-question {
        padding: 20px;
    }
    
    .sss-question-text {
        font-size: 16px;
    }
    
    .sss-answer p {
        font-size: 15px;
    }
    
    .sss-item.active .sss-answer {
        padding: 20px;
    }
    
    .sss-cta-section {
        padding: 60px 20px;
    }
    
    .sss-cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .sss-cta-icon i {
        font-size: 35px;
    }
    
    .sss-cta-content h2 {
        font-size: 28px;
    }
    
    .sss-cta-content p {
        font-size: 16px;
    }
    
    .sss-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-sss-primary,
    .btn-sss-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .sss-hero {
        padding: 40px 15px;
    }
    
    .sss-hero-icon {
        width: 70px;
        height: 70px;
    }
    
    .sss-hero-icon i {
        font-size: 35px;
    }
    
    .sss-hero-content h2 {
        font-size: 24px;
    }
    
    .sss-hero-content p {
        font-size: 15px;
    }
    
    .sss-section {
        padding: 40px 15px;
    }
    
    .sss-kategori {
        margin-bottom: 40px;
    }
    
    .sss-kategori-title {
        font-size: 22px;
    }
    
    .sss-question {
        padding: 18px;
    }
    
    .sss-question-text {
        font-size: 15px;
    }
    
    .sss-question-icon {
        width: 30px;
        height: 30px;
    }
    
    .sss-answer p {
        font-size: 14px;
    }
    
    .sss-item.active .sss-answer {
        padding: 18px;
    }
    
    .sss-cta-section {
        padding: 40px 15px;
    }
    
    .sss-cta-content h2 {
        font-size: 24px;
    }
    
    .sss-cta-content p {
        font-size: 15px;
    }
    
    .btn-sss-primary,
    .btn-sss-secondary {
        padding: 15px 30px;
        font-size: 16px;
    }
}


/* ===== TEKLİF SAYFA ===== */
.teklif-hero {
    padding: 60px 375px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
}

.teklif-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.teklif-hero-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-icon 2s ease-in-out infinite;
}

.teklif-hero-icon i {
    font-size: 45px;
    color: white;
}

.teklif-hero-content h2 {
    font-size: 38px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.teklif-hero-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.teklif-section {
    padding: 80px 375px;
    background-color: #ffffff;
}

.teklif-container {
    max-width: 100%;
}

.teklif-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.teklif-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.teklif-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.teklif-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.teklif-form .form-group {
    margin-bottom: 25px;
}

.teklif-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.teklif-form input,
.teklif-form select,
.teklif-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.teklif-form input:focus,
.teklif-form select:focus,
.teklif-form textarea:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.teklif-form textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.form-checkbox label a {
    color: #ff8c00;
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.btn-teklif-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-teklif-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.teklif-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.teklif-info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.teklif-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
}

.teklif-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.teklif-info-icon i {
    font-size: 24px;
    color: white;
}

.teklif-info-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.teklif-info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.teklif-iletisim {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.teklif-iletisim h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.teklif-iletisim p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.teklif-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: white;
    color: #ff8c00;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.teklif-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== GİZLİLİK SAYFA ===== */
.gizlilik-section {
    padding: 80px 375px;
    background-color: #ffffff;
}

.gizlilik-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gizlilik-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.gizlilik-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.gizlilik-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.gizlilik-date i {
    color: #ff8c00;
}

.gizlilik-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.gizlilik-item {
    margin-bottom: 40px;
}

.gizlilik-item h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gizlilik-item h2 i {
    color: #ff8c00;
    font-size: 22px;
}

.gizlilik-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.gizlilik-item ul {
    margin: 15px 0;
    padding-left: 25px;
}

.gizlilik-item li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.gizlilik-item a {
    color: #ff8c00;
    text-decoration: none;
}

.gizlilik-item a:hover {
    text-decoration: underline;
}

.gizlilik-footer {
    margin-top: 50px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 15px;
    border-left: 4px solid #ff8c00;
}

.gizlilik-footer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gizlilik-footer i {
    color: #ff8c00;
    margin-top: 3px;
}

/* ===== İLETİŞİM SAYFA ===== */
.iletisim-info-section {
    padding: 80px 375px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.iletisim-info-container {
    max-width: 100%;
}

.iletisim-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.iletisim-info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.iletisim-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.2);
}

.iletisim-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iletisim-info-icon i {
    font-size: 32px;
    color: white;
}

.iletisim-info-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.iletisim-info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.iletisim-info-card a {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
}

.iletisim-info-card a:hover {
    text-decoration: underline;
}

.iletisim-section {
    padding: 80px 375px;
    background-color: #ffffff;
}

.iletisim-container {
    max-width: 100%;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.iletisim-form-wrapper,
.iletisim-map-wrapper {
    background: white;
}

.iletisim-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.iletisim-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.iletisim-form .form-group {
    margin-bottom: 25px;
}

.iletisim-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.iletisim-form input,
.iletisim-form select,
.iletisim-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.iletisim-form input:focus,
.iletisim-form select:focus,
.iletisim-form textarea:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.iletisim-form textarea {
    resize: vertical;
}

.btn-iletisim-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-iletisim-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.iletisim-map {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.iletisim-social h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.iletisim-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-link-item:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.social-link-item.facebook {
    background: #3b5998;
}

.social-link-item.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link-item.twitter {
    background: #1da1f2;
}

.social-link-item.linkedin {
    background: #0077b5;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1600px) {
    .teklif-hero,
    .teklif-section,
    .gizlilik-section,
    .iletisim-info-section,
    .iletisim-section {
        padding-left: 250px;
        padding-right: 250px;
    }
}

@media screen and (max-width: 1400px) {
    .teklif-hero,
    .teklif-section,
    .gizlilik-section,
    .iletisim-info-section,
    .iletisim-section {
        padding-left: 150px;
        padding-right: 150px;
    }
}

@media screen and (max-width: 1200px) {
    .teklif-hero,
    .teklif-section,
    .gizlilik-section,
    .iletisim-info-section,
    .iletisim-section {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .iletisim-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .teklif-hero,
    .teklif-section,
    .gizlilik-section,
    .iletisim-info-section,
    .iletisim-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .teklif-grid,
    .iletisim-grid {
        grid-template-columns: 1fr;
    }
    
    .gizlilik-content {
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .teklif-hero,
    .teklif-section,
    .gizlilik-section,
    .iletisim-info-section,
    .iletisim-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .teklif-hero-content h2,
    .iletisim-title,
    .teklif-title {
        font-size: 28px;
    }
    
    .teklif-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .iletisim-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gizlilik-content {
        padding: 30px 20px;
    }
    
    .gizlilik-item h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .teklif-hero,
    .teklif-section,
    .gizlilik-section,
    .iletisim-info-section,
    .iletisim-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .teklif-hero-icon {
        width: 70px;
        height: 70px;
    }
    
    .teklif-hero-icon i {
        font-size: 35px;
    }
    
    .teklif-hero-content h2 {
        font-size: 24px;
    }
    
    .gizlilik-item h2 {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Modern Alert Stilleri */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10000;
    min-width: 400px;
    max-width: 500px;
    animation: slideIn 0.3s ease-out;
}

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

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

.custom-alert.success-alert {
    border-left: 5px solid #28a745;
}

.custom-alert .alert-icon {
    font-size: 40px;
    color: #28a745;
    flex-shrink: 0;
}

.custom-alert .alert-content {
    flex: 1;
}

.custom-alert .alert-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.custom-alert .alert-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.custom-alert .alert-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.custom-alert .alert-close:hover {
    color: #333;
    transform: rotate(90deg);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .custom-alert {
        min-width: auto;
        max-width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        top: 20px;
    }
}

/* Footer SEO Tags Section */
.footer-seo-tags {
    background: rgba(0, 0, 0, 0.2);
    padding: 35px 375px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.seo-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.seo-tag:hover {
    background: rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
    color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Responsive SEO Tags */
@media screen and (max-width: 1600px) {
    .footer-seo-tags {
        padding: 35px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .footer-seo-tags {
        padding: 35px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .footer-seo-tags {
        padding: 30px 80px;
    }
}

@media screen and (max-width: 1024px) {
    .footer-seo-tags {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .footer-seo-tags {
        padding: 25px 20px;
    }
    
    .seo-tags-wrapper {
        gap: 8px;
    }
    
    .seo-tag {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-seo-tags {
        padding: 20px 15px;
    }
    
    .seo-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ===== SEO CONTENT PAGES ===== */
.seo-content-section {
    padding: 60px 375px;
    background: #f8f9fa;
}

.seo-content-container {
    max-width: 100%;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Main Content */
.seo-main-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Table of Contents */
.seo-toc {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-left: 4px solid #ff8c00;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

.seo-toc-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-toc-title i {
    color: #ff8c00;
}

.seo-toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.seo-toc-list li a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.seo-toc-list li a:hover {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    padding-left: 20px;
}

/* Article */
.seo-article {
    color: #333;
}

.seo-h1 {
    font-size: 36px;
    color: #2d3561;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.seo-h2 {
    font-size: 28px;
    color: #2d3561;
    margin: 40px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff8c00;
    display: flex;
    align-items: center;
    gap: 12px;
}

.seo-h2 i {
    color: #ff8c00;
}

.seo-h3 {
    font-size: 22px;
    color: #333;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.seo-intro {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-left: 4px solid #ff8c00;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.seo-section {
    margin-bottom: 50px;
}

.seo-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.seo-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.seo-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

/* Highlight Box */
.seo-highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    border-left: 4px solid #4caf50;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

/* Services Grid */
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.seo-service-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.seo-service-card:hover {
    border-color: #ff8c00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.seo-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.seo-service-icon i {
    font-size: 32px;
    color: white;
}

.seo-service-card h3 {
    margin-bottom: 15px;
}

.seo-service-card p {
    font-size: 14px;
    color: #666;
}

/* Advantages */
.seo-advantages {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.seo-advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
}

.seo-advantage-item:hover {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    transform: translateX(10px);
}

.seo-advantage-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.seo-advantage-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.seo-advantage-content p {
    margin: 0;
    font-size: 15px;
}

/* Product Categories */
.seo-product-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.seo-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid #ff8c00;
}

.seo-category h3 {
    margin-top: 0;
    color: #ff8c00;
}

.seo-category ul {
    list-style: none;
    padding: 0;
}

.seo-category ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.seo-category ul li:last-child {
    border-bottom: none;
}

/* Price Info */
.seo-price-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
}

.seo-cta-box {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 25px;
}

.seo-cta-box p {
    color: white;
    margin-bottom: 15px;
}

.seo-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: #ff8c00;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 10px;
}

.seo-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Process */
.seo-process {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.seo-process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #ff8c00;
}

.seo-process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.seo-process-step h3 {
    margin-top: 0;
}

/* Reference Box */
.seo-reference-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
}

.seo-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.seo-sector-tag {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 2px solid #2196f3;
    border-radius: 25px;
    color: #2196f3;
    font-size: 14px;
    font-weight: 500;
}

/* FAQ */
.seo-faq {
    margin: 30px 0;
}

.seo-faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ff8c00;
}

.seo-faq-item h3 {
    margin-top: 0;
    color: #2d3561;
}

.seo-faq-item p {
    margin-bottom: 0;
}

/* Final CTA */
.seo-final-cta {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.seo-final-cta h2 {
    color: white;
    border: none;
    margin: 0 0 20px 0;
}

.seo-final-cta p {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}

.seo-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.seo-cta-button.primary {
    background: white;
    color: #ff8c00;
}

.seo-cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.seo-cta-button.secondary:hover {
    background: white;
    color: #ff8c00;
}

/* Sidebar */
.seo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.seo-sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.seo-sidebar-title {
    font-size: 20px;
    color: #2d3561;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff8c00;
}

.seo-sidebar-links {
    list-style: none;
    padding: 0;
}

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

.seo-sidebar-links li a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s;
}

.seo-sidebar-links li a:hover {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    color: #ff8c00;
    padding-left: 15px;
}

.seo-sidebar-links li a i {
    font-size: 12px;
    color: #ff8c00;
}

/* Contact Widget */
.seo-contact-widget {
    background: linear-gradient(135deg, #2d3561 0%, #3f4a73 100%);
    color: white;
}

.seo-contact-widget .seo-sidebar-title {
    color: white;
    border-bottom-color: #ff8c00;
}

.seo-contact-info {
    margin-bottom: 20px;
}

.seo-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.seo-contact-item i {
    color: #ff8c00;
    font-size: 18px;
}

.seo-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.seo-contact-item a:hover {
    color: #ff8c00;
}

.seo-sidebar-cta {
    display: block;
    text-align: center;
    padding: 15px;
    background: #ff8c00;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}

.seo-sidebar-cta:hover {
    background: #ff6600;
    transform: translateY(-2px);
}

/* Hours Widget */
.seo-hours-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.seo-hours-list {
    list-style: none;
    padding: 0;
}

.seo-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.seo-hours-list li:last-child {
    border-bottom: none;
}

.seo-hours-list li span {
    color: #666;
}

.seo-hours-list li strong {
    color: #ff8c00;
}

/* Responsive */
@media screen and (max-width: 1600px) {
    .seo-content-section {
        padding: 60px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .seo-content-section {
        padding: 60px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .seo-content-section {
        padding: 50px 80px;
    }
    
    .seo-content-grid {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
    
    .seo-services-grid,
    .seo-product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .seo-content-section {
        padding: 40px 40px;
    }
    
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-main-content {
        padding: 30px;
    }
    
    .seo-toc-list {
        grid-template-columns: 1fr;
    }
    
    .seo-sidebar {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .seo-content-section {
        padding: 30px 20px;
    }
    
    .seo-main-content {
        padding: 25px 20px;
    }
    
    .seo-h1 {
        font-size: 28px;
    }
    
    .seo-h2 {
        font-size: 24px;
    }
    
    .seo-h3 {
        font-size: 20px;
    }
    
    .seo-services-grid,
    .seo-product-categories {
        grid-template-columns: 1fr;
    }
    
    .seo-cta-buttons {
        flex-direction: column;
    }
    
    .seo-cta-button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .seo-content-section {
        padding: 20px 15px;
    }
    
    .seo-main-content {
        padding: 20px 15px;
    }
    
    .seo-final-cta {
        padding: 30px 20px;
    }
}

/* SEO Image Sections */
.seo-image-section {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.seo-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.seo-image-caption {
    background: #f8f9fa;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.seo-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.seo-image-grid-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.seo-image-grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 768px) {
    .seo-image-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== VİDEO BÖLÜMÜ ===== */
.video-section {
    padding: 80px 375px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-container {
    max-width: 100%;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

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

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title {
    padding: 20px 25px 10px;
    font-size: 22px;
    color: #2d3561;
    font-weight: 600;
}

.video-description {
    padding: 0 25px 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Instagram Embed */
.instagram-embed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    text-decoration: none;
    color: white;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.instagram-embed:hover {
    transform: scale(1.02);
}

.instagram-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.instagram-icon i {
    font-size: 50px;
    color: white;
}

.instagram-embed h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.instagram-embed p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.instagram-btn {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: #dc2743;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.instagram-embed:hover .instagram-btn {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media screen and (max-width: 1600px) {
    .video-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .video-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .video-section {
        padding: 60px 80px;
    }
}

@media screen and (max-width: 1024px) {
    .video-section {
        padding: 60px 40px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .video-section {
        padding: 50px 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .video-title {
        font-size: 20px;
    }
    
    .instagram-embed {
        min-height: 350px;
        padding: 30px;
    }
    
    .instagram-icon {
        width: 80px;
        height: 80px;
    }
    
    .instagram-icon i {
        font-size: 40px;
    }
    
    .instagram-embed h3 {
        font-size: 24px;
    }
    
    .instagram-embed p {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .video-section {
        padding: 40px 15px;
    }
}

/* ===== ANA SAYFA SSS BÖLÜMÜ ===== */
.sss-anasayfa-section {
    padding: 100px 375px;
    background-color: #ffffff;
}

.sss-anasayfa-container {
    text-align: center;
}

.sss-anasayfa-subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

.sss-anasayfa-grid {
    max-width: 900px;
    margin: 0 auto;
}

.sss-anasayfa-accordion {
    text-align: left;
}

.sss-anasayfa-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss-anasayfa-item:hover {
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.15);
}

.sss-anasayfa-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sss-anasayfa-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: left;
    flex: 1;
}

.sss-anasayfa-question-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.sss-anasayfa-question-icon i {
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.sss-anasayfa-item.active .sss-anasayfa-question-icon i {
    transform: rotate(180deg);
}

.sss-anasayfa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.sss-anasayfa-answer p {
    padding: 0 30px 25px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.sss-anasayfa-cta {
    margin-top: 50px;
}

.sss-anasayfa-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.sss-anasayfa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
}

/* Responsive SSS */
@media screen and (max-width: 1600px) {
    .sss-anasayfa-section {
        padding: 80px 250px;
    }
}

@media screen and (max-width: 1400px) {
    .sss-anasayfa-section {
        padding: 80px 150px;
    }
}

@media screen and (max-width: 1200px) {
    .sss-anasayfa-section {
        padding: 80px 80px;
    }
}

@media screen and (max-width: 1024px) {
    .sss-anasayfa-section {
        padding: 60px 40px;
    }
    
    .sss-anasayfa-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .sss-anasayfa-section {
        padding: 60px 20px;
    }
    
    .sss-anasayfa-question {
        padding: 20px;
    }
    
    .sss-anasayfa-question-text {
        font-size: 16px;
    }
    
    .sss-anasayfa-question-icon {
        width: 30px;
        height: 30px;
        margin-left: 15px;
    }
    
    .sss-anasayfa-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
    
    .sss-anasayfa-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .sss-anasayfa-section {
        padding: 40px 15px;
    }
    
    .sss-anasayfa-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .sss-anasayfa-question {
        padding: 18px 15px;
    }
    
    .sss-anasayfa-question-text {
        font-size: 15px;
    }
    
    .sss-anasayfa-answer p {
        padding: 0 15px 18px;
        font-size: 14px;
    }
}
