/* ==========================================
   PAGE BANNER
   ========================================== */
.service-banner {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Resim yoksa golden gradient arka plan */
    background: linear-gradient(135deg,
            #f4d03f 0%,
            #f1c40f 25%,
            #f39c12 50%,
            #e67e22 75%,
            #d35400 100%);
}

.category-page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Resim yoksa golden gradient arka plan */
    background: linear-gradient(135deg,
            #f4d03f 0%,
            #f1c40f 25%,
            #f39c12 50%,
            #e67e22 75%,
            #d35400 100%);
}

.category-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    /* Başlık ve içerik beyaz */
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    /* Hafif transparan arka plan */
    border-radius: 10px;
    backdrop-filter: blur(5px);
    /* Modern bulanıklık efekti */
}

.category-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    /* Kategori başlığı açıkça beyaz */
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7);
    /* Beyaz gölge efekti */
    line-height: 1.2;
}

.service-banner-title {
    font-size: 2rem;
    font-weight: 200;
    text-align: center;
    color: #2c2c2c;
    letter-spacing: 2px;
    position: relative;
}

/* Mobil uyumlu */
@media (max-width: 768px) {
    .category-page-banner {
        height: 300px;
    }

    .category-banner-title {
        font-size: 2rem;
        color: white;
        /* Mobil için de beyaz */
    }

    .category-banner-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .category-page-banner {
        height: 250px;
    }

    .category-banner-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: white;
        /* Küçük ekranlar için de beyaz */
    }
}

/* ==========================================
   SERVIES
   ========================================== */

.service-title {
    color: black;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.service-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: green;
    border-radius: 2px;
}

.short-description {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d4af37;
    font-size: 1.1rem;
    line-height: 1.8;
    color: green;
}

.long-description {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    line-height: 1.8;
}

.long-description p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ==========================================
        BREADCRUMB
   ========================================== */

.breadcrumb {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the links horizontally */
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.breadcrumb li {
    margin-right: 10px;
    font-size: 16px;
    position: relative;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 10px;
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb a {
    text-decoration: none;
    color: #1e90ff;
    transition:
        color 0.3s ease,
        transform 0.2s ease;
}

.breadcrumb a:hover {
    color: #ff6b6b;
    transform: scale(1.05);
}

.breadcrumb .link-container {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.breadcrumb .link-container:hover {
    background: rgba(255, 255, 255, 0.4);
}

.breadcrumb .active {
    color: #2c3e50;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.breadcrumb li:hover {
    animation: bounce 0.3s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #2c2c2c;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   AK THUMBNAIL
   ========================================== */

.ak-video-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.ak-image-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    max-width: 100%;
    height: auto;
}

/* ==========================================
   PAGE BANNER
   ========================================== */

.page-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner-image-container {
    position: relative;
    height: 300px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.title-container {
    display: inline-block;
    padding: 20px 30px;
    background-color: rgba(0, 0, 0, 0.6);
    /* Yarı saydam siyah arkaplan */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    /* Modern tarayıcılarda blur efekti */
    margin-bottom: 15px;
}

.page-title {
    font-size: 3rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    color: white;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .banner-image-container {
        height: 300px;
    }

    .page-title {
        font-size: 2rem;
    }

    .title-container {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .banner-image-container {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .title-container {
        padding: 10px 15px;
        width: 90%;
    }
}

/* ==========================================
   projects show
   ========================================== */

/* Ortak Galeri Stilleri */
.video-gallery-grid,
.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
    gap: 20px;
}

.video-gallery-item,
.image-gallery-item {
    position: relative;
    transition:
        box-shadow 0.3s ease,
        border 0.3s ease;
    /* Hover için geçiş */
}

.video-gallery-item:hover,
.image-gallery-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Hafif gölge */
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* İnce kenarlık */
}

.video-gallery-thumbnail-container,
.image-gallery-thumbnail-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /* YouTube videoları ile aynı en-boy oranı */
    transition: transform 0.3s ease;
    /* Hover için ölçek geçişi */
}

.video-gallery-item:hover .video-gallery-thumbnail-container,
.image-gallery-item:hover .image-gallery-thumbnail-container {
    transform: scale(1.02);
    /* Hafif büyütme */
}

.video-gallery-thumbnail-container img,
.image-gallery-thumbnail-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Resimlerin ve videoların düzgün ölçeklenmesi */
}

.video-gallery-icon-overlay,
.image-gallery-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.3s ease;
    /* Hover için geçiş */
}

/* Oynatma İkonu Stilleri (Video) */
.video-gallery-icon-overlay .ri-play-line {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
    /* Hover için geçiş */
}

.video-gallery-icon-overlay .ri-play-line::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #ff0000;
    /* Kırmızı play ikonu */
    margin-left: 4px;
}

.video-gallery-icon-overlay .ri-play-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
    animation: pulse 2s infinite ease-out;
    transform-origin: center;
}

/* Büyüteç İkonu Stilleri (Resim) */
.image-gallery-icon-overlay .ri-zoom-in-line {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 24px;
    color: #ff0000;
    /* Kırmızı renk, oynatma ikonu ile uyumlu */
    transition:
        background 0.3s ease,
        transform 0.3s ease;
    /* Hover için geçiş */
}

.image-gallery-icon-overlay .ri-zoom-in-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
    animation: pulse 2s infinite ease-out;
    transform-origin: center;
}

/* Hover Efektleri (İkonlar) */
.video-gallery-icon-overlay:hover .ri-play-line,
.image-gallery-icon-overlay:hover .ri-zoom-in-line {
    background: rgba(255, 255, 255, 0.9);
    /* Daha opak arka plan */
    transform: scale(1.1);
    /* Hafif büyütme */
}

.video-gallery-icon-overlay:hover .ri-play-line::after,
.image-gallery-icon-overlay:hover .ri-zoom-in-line::after {
    animation: none;
    /* Hover sırasında pulse animasyonu durdurulur */
}

/* Pulse Animasyonu */
@keyframes pulse {
    0% {
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.video-gallery-card-body,
.image-gallery-card-body {
    padding: 10px;
    text-align: center;
}

/* ==========================================
    GOLD BTN
   ========================================== */

.mybtn-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(to right, #d4af37 0%, #d4af37 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition:
        background-size 0.4s ease,
        color 0.4s ease;
    text-decoration: none;
    overflow: hidden;
    font-weight: 500;
}

.mybtn-gold i {
    transition: transform 0.3s ease;
}

.mybtn-gold:hover {
    background-size: 100% 100%;
    color: #fff;
}

.mybtn-gold:hover i {
    transform: translateX(6px);
}

/* ==========================================
PAGE HEADER
   ========================================== */

.page-header {
    background: linear-gradient(135deg,
            rgb(200, 141, 22) 0%,
            rgb(246, 179, 49) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;

    /* DİKKAT: stroke='white' yerine #ffffff kullanıldı, %20 opaklıkla */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='86.6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 86.6L50 0L100 86.6ZM0 86.6L100 86.6M25 43.3L75 43.3' stroke='%23ffffff' stroke-opacity='0.2' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: 90px 86.6px;
    background-repeat: repeat;
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 24px;
    margin: 0;
}

/* ==========================================
     ABOUT
   ========================================== */

.about-section .card {
    border-radius: 0;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d4af37;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* Team Grid */
.about-section .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-section .team-member {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-section .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-section .team-member img {
    background-color: red;
}

/* Values Grid */
.about-section .values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px 0;
}

.about-section .value-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 0;
    transition: all 0.3s ease;
}

.about-section .value-item:hover {
    background: #2c2c2c;
    color: #fff;
}

.about-section .value-item h3 {
    color: #d4af37;
    margin: 20px 0 15px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section .value-item:hover h3 {
    color: #ffd700;
}

.about-section .value-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    color: #d4af37;
}

.about-section .value-item:hover .value-icon {
    color: #ffd700;
}

.about-section .value-icon i {
    font-size: 4rem;
}

@media (min-width: 768px) {
    .about-section .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-section .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   INTROFIRST
   ========================================== */
.introfirst-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    gap: 60px;
}

.introfirst-left .image-container {
    position: relative;
    height: 600px;
    transform-style: preserve-3d;
    padding: 0 20px;
}

.introfirst-left .image-container .image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.introfirst-left .image-container .image-stack .image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
    padding: 8px;
}

.introfirst-left .image-container .image-stack .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media (min-width: 1024px) {
    .introfirst-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        margin: 0 auto;
        width: 100%;
        padding: 0 20px;
    }
}

.introfirst-left .image-container .image-stack .image-card:nth-child(1) {
    width: 75%;
    height: 65%;
    top: 0;
    right: 0;
    z-index: 3;
    transform: rotate(-2deg);
}

.introfirst-left .image-container .image-stack .image-card:nth-child(2) {
    width: 70%;
    height: 60%;
    bottom: 10%;
    left: 0;
    z-index: 2;
    transform: rotate(3deg);
}

.introfirst-left .image-container:hover .image-stack .image-card:nth-child(1) {
    transform: rotate(0deg) scale(1.02) translateZ(30px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.introfirst-left .image-container:hover .image-stack .image-card:nth-child(2) {
    transform: rotate(1deg) scale(1.01) translateZ(20px);
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes lineFloat {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(15px) rotate(5deg);
    }
}

/* ==========================================
   INTROSECOND
   ========================================== */
.introsecond-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.introsecond-wrapper.text-content {
    padding: 0 20px;
}

.introsecond-wrapper .text-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.introsecond-wrapper .text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.introsecond-right .wrapper {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
}

/* Ana Resim (Soyutların Üstünde) */
.introsecond-right .wrapper .image-container {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 400px;
    z-index: 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.introsecond-right .wrapper .image-container .image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.introsecond-right .wrapper .image-container .image-wrapper .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.introsecond-right .wrapper .image-container .image-wrapper .main-image:hover {
    transform: scale(1.05);
}

/* Mor-Mavi Soyut Arkaplan (Altta Sol) */
.abstract-bg-1 {
    position: absolute;
    bottom: 40px;
    left: 25px;
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    border-radius: 20px;
    z-index: 1;
    animation: moveLeft 8s ease-in-out infinite;
    animation-delay: 0s;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Turuncu-Coral Soyut Arkaplan (Altta Sağ) */
.abstract-bg-2 {
    position: absolute;
    bottom: 60px;
    right: 25px;
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    border-radius: 20px;
    z-index: 2;
    animation: moveRight 10s ease-in-out infinite;
    animation-delay: 0s;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

@media (min-width: 1024px) {
    .introsecond-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        margin: 0 auto;
        width: 100%;
        padding: 0 20px;
    }
}

/* Gelişmiş Animasyonlar */
@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px) scale(1);
        filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
    }

    33% {
        transform: translateX(-50%) translateY(-20px) scale(1.02);
        filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.2));
    }

    66% {
        transform: translateX(-50%) translateY(-10px) scale(0.98);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
    }
}

@keyframes moveLeft {

    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.9;
        filter: blur(0px) hue-rotate(0deg);
    }

    25% {
        transform: translateX(-30px) translateY(-15px) rotate(-2deg) scale(1.05);
        opacity: 0.8;
        filter: blur(0.5px) hue-rotate(10deg);
    }

    50% {
        transform: translateX(-45px) translateY(10px) rotate(1deg) scale(0.95);
        opacity: 0.85;
        filter: blur(1px) hue-rotate(20deg);
    }

    75% {
        transform: translateX(-20px) translateY(-8px) rotate(-1deg) scale(1.02);
        opacity: 0.9;
        filter: blur(0.3px) hue-rotate(5deg);
    }
}

@keyframes moveRight {

    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.9;
        filter: blur(0px) hue-rotate(0deg);
    }

    25% {
        transform: translateX(35px) translateY(20px) rotate(2deg) scale(1.08);
        opacity: 0.75;
        filter: blur(0.8px) hue-rotate(-15deg);
    }

    50% {
        transform: translateX(50px) translateY(-15px) rotate(-1.5deg) scale(0.92);
        opacity: 0.8;
        filter: blur(1.2px) hue-rotate(-25deg);
    }

    75% {
        transform: translateX(25px) translateY(25px) rotate(1deg) scale(1.05);
        opacity: 0.85;
        filter: blur(0.5px) hue-rotate(-8deg);
    }
}

/* Ek Dekoratif Elementler */
.connector-line {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom,
            rgba(139, 92, 246, 0.5),
            transparent);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.2;
        transform: translateX(-50%) scaleY(1) scaleX(1);
        background: linear-gradient(to bottom,
                rgba(139, 92, 246, 0.3),
                transparent);
    }

    25% {
        opacity: 0.6;
        transform: translateX(-50%) scaleY(1.3) scaleX(1.5);
        background: linear-gradient(to bottom,
                rgba(59, 130, 246, 0.5),
                rgba(139, 92, 246, 0.2));
    }

    50% {
        opacity: 0.9;
        transform: translateX(-50%) scaleY(1.5) scaleX(2);
        background: linear-gradient(to bottom,
                rgba(255, 107, 53, 0.4),
                rgba(59, 130, 246, 0.3));
    }

    75% {
        opacity: 0.7;
        transform: translateX(-50%) scaleY(1.2) scaleX(1.3);
        background: linear-gradient(to bottom,
                rgba(139, 92, 246, 0.4),
                rgba(255, 107, 53, 0.2));
    }
}

/* Gelişmiş Parçacık Efektleri */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 60%;
    left: 20%;
    background: radial-gradient(circle,
            rgba(139, 92, 246, 0.8),
            rgba(139, 92, 246, 0.3));
    animation-delay: 0s;
    width: 10px;
    height: 10px;
}

.particle:nth-child(2) {
    top: 70%;
    right: 25%;
    background: radial-gradient(circle,
            rgba(255, 107, 53, 0.8),
            rgba(255, 107, 53, 0.3));
    animation-delay: -5s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(3) {
    top: 80%;
    left: 60%;
    background: radial-gradient(circle,
            rgba(59, 130, 246, 0.8),
            rgba(59, 130, 246, 0.3));
    animation-delay: -10s;
    width: 12px;
    height: 12px;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) rotate(0deg) scale(0);
        opacity: 0;
        filter: blur(2px);
    }

    10% {
        transform: translateY(-20px) rotate(45deg) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }

    25% {
        transform: translateY(-60px) rotate(90deg) scale(1.2);
        opacity: 1;
        filter: blur(0px);
    }

    50% {
        transform: translateY(-120px) rotate(180deg) scale(0.8);
        opacity: 0.9;
        filter: blur(0.5px);
    }

    75% {
        transform: translateY(-180px) rotate(270deg) scale(1.1);
        opacity: 0.6;
        filter: blur(1px);
    }

    90% {
        transform: translateY(-220px) rotate(315deg) scale(0.5);
        opacity: 0.3;
        filter: blur(1.5px);
    }

    100% {
        transform: translateY(-250px) rotate(360deg) scale(0);
        opacity: 0;
        filter: blur(2px);
    }
}

/* ==========================================
   FLOATING ICONS
   ========================================== */

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-icons .icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.floating-icons .icon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: -1;
}

.floating-icons .icon-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-icons .icon-button:hover::before {
    transform: scale(1.1);
}

/* Scroll Top Button */
.floating-icons .scroll-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-icons .scroll-top::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-icons .scroll-top:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* WhatsApp Button */
.floating-icons .whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-icons .whatsapp::before {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-icons .whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

/* Phone Button */
.floating-icons .icon-button:not(.scroll-top):not(.whatsapp) {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.floating-icons .icon-button:not(.scroll-top):not(.whatsapp)::before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.floating-icons .icon-button:not(.scroll-top):not(.whatsapp):hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
}

/* Scroll Top Button Visibility */
.scroll-top-btn {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }

    .floating-icons .icon-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .floating-icons {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }

    .floating-icons .icon-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ==========================================

   ========================================== */