:root {
    --primary-color: #4A3AFF;
    --secondary-color: #2A3BAB;
    --accent-color: #00B4D8;
    --success-color: #2D6A4F;
    --warning-color: #2C3E7E;
    --danger-color: #6C42D1;
    --background-gradient-1: #0F1C53;
    --background-gradient-2: #2B185D;
    --background-gradient-3: #1A237E;
    --card-bg: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --border-color: rgba(255, 255, 255, 0.12);
    --gradient-1: linear-gradient(45deg, #0F1C53, #2B185D);
    --gradient-2: linear-gradient(45deg, #4A3AFF, #00B4D8);
    --gradient-3: linear-gradient(45deg, #2B185D, #1A237E);
    --navbar-bg: rgba(15, 28, 83, 0.98);
    --footer-bg: rgba(15, 28, 83, 0.98);
    --dark: #1a237e;
}

/* Intro Styles */
.intro-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* For mobile browsers */
    background-color: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    overflow: hidden;
}

.intro-section.hidden {
    opacity: 0;
    pointer-events: none;
}

.intro-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skip-intro {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10000;
}

.skip-intro:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .intro-section {
        height: 100vh;
        height: 100dvh;
    }
    
    .intro-content {
        width: 100%;
        height: 100%;
    }
    
    .intro-video,
    .intro-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .skip-intro {
        bottom: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

@supports (-webkit-touch-callout: none) {
    .intro-section,
    .intro-content {
        height: -webkit-fill-available;
    }
}

body {
    background: linear-gradient(135deg, var(--background-gradient-1), var(--background-gradient-2), var(--background-gradient-3));
    background-size: 300% 300%;
    animation: gradientBG 20s ease infinite;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    animation: patternFloat 30s linear infinite;
}

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

/* Navbar Styles */
.navbar {
    background: var(--navbar-bg);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1030;
    height: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link:hover {
    color: var(--accent-color) !important;
    text-shadow: 0 0 15px var(--accent-color);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    transform: translateX(-50%);
    animation: navLine 3s ease-in-out infinite;
    opacity: 1;
}

@keyframes navLine {
    0%, 100% {
        width: 30%;
        opacity: 0.8;
    }
    50% {
        width: 50%;
        opacity: 1;
    }
}

/* Card Styles */
.custom-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 58, 255, 0.2);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Image Container Styles */
.image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 0.8rem;
}

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

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

/* Öne Çıkan İlanlar Stilleri */
.custom-card .card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.custom-card:hover .card-img-top {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.custom-card h3 {
    font-size: 1.3rem;
    margin: 0.6rem 0;
    line-height: 1.3;
    height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
}

.custom-card .lead {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.custom-card:hover .lead {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.custom-card p {
    flex-grow: 1;
    margin-bottom: 0.6rem;
    height: 3.9em;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.custom-card:hover p {
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.custom-card .badge-container {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

/* Category and Type Badges */
.kategori-badge, .ilan-tipi-badge, .video-badge {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.badge-container {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.kategori-badge i {
    margin-right: 6px;
}

.custom-card:hover .kategori-badge,
.custom-card:hover .ilan-tipi-badge,
.custom-card:hover .video-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-badge {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.video-badge i {
    font-size: 0.9em;
}

.kategori-emlak {
    background: linear-gradient(45deg, #614385, #516395);
}

.kategori-otomotiv {
    background: linear-gradient(45deg, #614385, #516395);
}

.kategori-bilgisayar {
    background: linear-gradient(45deg, #614385, #516395);
}

.satilik-badge {
    background: linear-gradient(45deg, #614385, #516395);
}

.kiralik-badge {
    background: linear-gradient(45deg, #614385, #516395);
}

/* Button Styles */
.btn-gradient {
    background: linear-gradient(45deg, #2937f0, #9f1ae2);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    padding: 12px 30px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 55, 240, 0.3);
    color: #fff;
}

.btn-gradient:active {
    transform: translateY(0);
}

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

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

/* Hero buton özel animasyonları */
.hero-section .btn-gradient {
    font-size: 1.1rem;
    padding: 15px 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: buttonPulse 2s infinite;
}

.hero-section .btn-gradient:hover {
    animation: buttonShine 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(41, 55, 240, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(41, 55, 240, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(41, 55, 240, 0);
    }
}

@keyframes buttonShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contact Form Button Specific Styles */
.contact-form .btn-gradient {
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 14px 30px;
    width: 100%;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contact-form .btn-gradient:hover {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

@media (max-width: 768px) {
    .contact-form .btn-gradient {
        max-width: 100%;
        padding: 12px 20px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--background-gradient-3), var(--background-gradient-1));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img,
.hero-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 28, 83, 0.7), rgba(42, 24, 93, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.lead {
    animation: textGlow 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

h1, h2, h3 {
    animation: textGlow 3s ease-in-out infinite;
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.scroll-down i {
    color: #fff;
    font-size: 2.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
    animation: scrollBounce 2s infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateZ(0);
    }
    40% {
        transform: translateY(-20px) translateZ(0);
    }
    60% {
        transform: translateY(-10px) translateZ(0);
    }
}

.scroll-down:hover i {
    animation: none;
    transform: scale(1.2) translateZ(0);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
        height: auto;
        display: flex;
        align-items: center;
    }

    .navbar-brand {
        padding: 0;
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        max-height: 60px;
        width: auto;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        margin-right: 0;
    }

    .hero-section {
        min-height: 100vh;
        padding: 120px 0;
    }

    .hero-content {
        padding: 0 15px;
        margin-top: -30px;
    }

    .hero-title {
        font-size: 2rem;
        white-space: normal;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .scroll-down {
        bottom: 20px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
        height: auto;
        display: flex;
        align-items: center;
    }

    .navbar-brand {
        padding: 0;
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        max-height: 60px;
        width: auto;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        margin-right: 0;
    }

    .hero-section {
        min-height: calc(100vh - 60px);
        margin-top: 60px;
        padding: 40px 0;
    }

    .hero-background img,
    .hero-background video {
        height: 100%;
    }

    .hero-content {
        padding: 1rem;
        max-height: calc(100vh - 160px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .custom-card {
        margin-bottom: 30px;
        padding: 20px;
    }

    .navbar-collapse {
        background: var(--navbar-bg);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .service-icon {
        margin-bottom: 15px;
    }

    .row > [class*='col-'] {
        padding: 15px;
    }

    section {
        padding: 40px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-down {
        bottom: 30px;
    }

    .custom-card .lead {
        font-size: 1.3rem;
        line-height: 1.6;
    }
}

/* Additional Gradient Effects */
.footer-title::after {
    background: var(--gradient-1);
}

/* Animation Colors */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(74, 58, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(15, 28, 83, 0.3); }
    100% { box-shadow: 0 0 5px rgba(74, 58, 255, 0.2); }
}

.custom-card:hover {
    animation: glow 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-30%, -30%) rotate(0deg);
    }
    100% {
        transform: translate(-30%, -30%) rotate(360deg);
    }
}

/* Carousel Styles */
.featured-carousel {
    position: relative;
    padding: 5px 0 35px;
}

.featured-carousel .carousel-inner {
    padding: 5px 0;
}

.featured-carousel .carousel-control-prev,
.featured-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: none;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.featured-carousel .carousel-control-prev {
    left: -60px;
}

.featured-carousel .carousel-control-next {
    right: -60px;
}

.featured-carousel .carousel-control-prev:hover,
.featured-carousel .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.2);
}

.featured-carousel .carousel-control-prev-icon,
.featured-carousel .carousel-control-next-icon {
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    mask-size: 100%;
    -webkit-mask-size: 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.featured-carousel .carousel-control-prev-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.featured-carousel .carousel-control-next-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59L10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59L10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
}

.featured-carousel .carousel-indicators {
    bottom: -40px;
}

.featured-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.featured-carousel .carousel-indicators button.active {
    width: 30px;
    border-radius: 15px;
    background-color: var(--primary-color);
}

/* Card Styles Update for Carousel */
.carousel .custom-card {
    margin: 0 auto;
    max-width: 90%;
}

@media (max-width: 768px) {
    .featured-carousel .carousel-control-prev {
        left: -40px;
    }
    
    .featured-carousel .carousel-control-next {
        right: -40px;
    }
    
    .featured-carousel .carousel-control-prev-icon,
    .featured-carousel .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
    
    .carousel .custom-card {
        max-width: 100%;
        margin: 0 20px;
    }

    .featured-carousel .carousel-inner {
        padding: 10px 0;
    }
}

/* Services Preview */
section.py-5 {
    padding: 0;
}

section.py-5:not(.bg-gradient) {
    padding-top: 60px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 0;
    }
    
    section.py-5:not(.bg-gradient) {
        padding-top: 40px;
    }
}

/* Service Icon Animations */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(74, 58, 255, 0.2);
    }
    50% {
        box-shadow: 0 8px 30px rgba(74, 58, 255, 0.4);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(74, 58, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.6);
    border-right-color: rgba(255, 255, 255, 0.6);
    animation: iconRotate 3s linear infinite;
    pointer-events: none;
}

.service-icon i {
    font-size: 3.2rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 1;
}

.custom-card:hover .service-icon {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(74, 58, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.custom-card:hover .service-icon i {
    transform: scale(1.1);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .service-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 2.8rem;
    }
}

.text-secondary {
    color: var(--text-primary) !important;
    opacity: 0.95;
}

.custom-card:hover .text-secondary {
    opacity: 1;
}

/* Text Animation Effects */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                     0 0 30px rgba(74, 58, 255, 0.3);
    }
}

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

/* Enhanced Button Animation Effects */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 58, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 58, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 58, 255, 0);
    }
}

@keyframes buttonShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.btn-gradient {
    background-size: 200% auto;
    background-image: linear-gradient(45deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 51%, 
        var(--primary-color) 100%
    );
    animation: buttonShine 3s linear infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    animation: buttonPulse 1.5s infinite;
}

.btn-gradient:active {
    transform: translateY(2px) scale(0.95);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
    opacity: 0;
}

.btn-gradient:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

/* Card Button Special Effects */
.custom-card .btn-gradient {
    background-size: 200% auto;
    background-image: linear-gradient(45deg,
        var(--accent-color) 0%,
        var(--primary-color) 51%,
        var(--accent-color) 100%
    );
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateZ(0);
}

.custom-card .btn-gradient:hover {
    background-position: right center;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 7px 25px rgba(74, 58, 255, 0.4);
}

.custom-card .btn-gradient:active {
    transform: translateY(1px) translateZ(0);
}

/* Navbar Button Animation */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right,
        var(--accent-color),
        var(--primary-color)
    );
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    animation: buttonPulse 1.5s infinite;
    transform: translateY(-2px);
}

/* Filter Button Effects */
.filter-btn {
    background: linear-gradient(45deg,
        var(--primary-color),
        var(--accent-color)
    );
    background-size: 200% auto;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}

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

.filter-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 58, 255, 0.3);
    animation: buttonPulse 1.5s infinite;
}

.filter-btn.active {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(74, 58, 255, 0.4);
    animation: buttonPulse 1.5s infinite;
}

/* Form Submit Button Effects */
input[type="submit"], 
button[type="submit"] {
    background: linear-gradient(45deg,
        var(--primary-color),
        var(--accent-color)
    );
    background-size: 200% auto;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(74, 58, 255, 0.4);
    animation: buttonPulse 1.5s infinite;
}

/* Footer Link Effects */
.footer a {
    position: relative;
    transition: all 0.3s ease;
}

.footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer a:hover::before {
    transform: scaleX(1);
}

.footer a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* Social Media Icons Effects */
.footer .fab {
    transition: all 0.3s ease;
}

.footer .fab:hover {
    transform: translateY(-3px) scale(1.2);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* Fullscreen Sections */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Section Specific Styles */
.hero-section {
    background: linear-gradient(rgba(15, 28, 83, 0.9), rgba(43, 24, 93, 0.9));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 0;
    padding-top: 76px;
}

.services-section {
    background: linear-gradient(135deg, var(--background-gradient-2), var(--background-gradient-3));
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-section .custom-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.services-section .custom-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.services-section .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.services-section .service-icon i {
    font-size: 3rem;
    color: #fff;
    transition: all 0.4s ease;
}

.services-section .custom-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(74, 58, 255, 0.4);
}

.services-section .custom-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
}

.services-section .custom-card .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-align: center;
    opacity: 0.9;
}

.services-section .list-unstyled {
    margin: 0;
    padding: 0 20px;
}

.services-section .list-unstyled li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    opacity: 0.85;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.services-section .list-unstyled li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.services-section .custom-card:hover .list-unstyled li {
    opacity: 1;
    transform: translateX(5px);
}

.services-section .custom-card:hover .list-unstyled li i {
    transform: scale(1.2);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .services-section {
        padding: 100px 0 60px;
    }
    .services-section .custom-card {
        padding: 15px;
        margin-bottom: 20px;
        height: auto;
        overflow: visible;
    }
    .services-section .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .services-section .service-icon i {
        font-size: 1.8rem;
    }
    .services-section .custom-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .services-section .custom-card .lead {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 15px;
        padding: 0 10px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    .services-section .list-unstyled {
        padding: 0;
        margin-bottom: 0;
    }
    .services-section .list-unstyled li {
        font-size: 0.9rem;
        margin-bottom: 8px;
        padding-left: 25px;
        position: relative;
    }
    .services-section .list-unstyled li i {
        position: absolute;
        left: 0;
        top: 4px;
        font-size: 0.8rem;
    }
}

.featured-section {
    background: linear-gradient(135deg, var(--background-gradient-3), var(--background-gradient-1));
    padding-top: 100px;
}

.contact-section {
    padding: 100px 0 60px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background-gradient-3), var(--background-gradient-1));
    color: white;
    position: relative;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(74, 58, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(74, 58, 255, 0.3);
}

.contact-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 40px;
    }
    
    .contact-info-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-item p {
        font-size: 0.9rem;
    }
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info-item div {
    flex: 1;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.contact-info-item p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-secondary);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-section .custom-card {
        padding: 1.5rem;
    }

    .contact-info-item {
        padding: 0.6rem;
    }

    .contact-info-item i {
        font-size: 1rem;
        width: 2rem;
        height: 2rem;
    }

    .contact-info-item h4 {
        font-size: 0.85rem;
    }

    .contact-info-item p {
        font-size: 0.8rem;
    }
}

/* Section Title Animations */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    animation: titleLine 3s ease-in-out infinite;
    transform: translateX(-50%);
}

@keyframes titleLine {
    0%, 100% {
        width: 30%;
        left: 50%;
        transform: translateX(-50%);
    }
    50% {
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Remove any specific contact heading styles */
.contact-section h2,
.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .section-title,
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* Contact Card Styles */
.contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.contact-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-info-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.scroll-down i {
    color: #fff;
    font-size: 2rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    animation: scrollBounce 2s infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.scroll-down:hover i {
    animation: none;
    transform: scale(1.2) translateZ(0);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    transition: all 0.3s ease;
}

/* Active Navigation Styles */
.nav-link.active {
    color: var(--accent-color) !important;
    text-shadow: 0 0 15px var(--accent-color);
}

.nav-link.active::after {
    width: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .fullscreen-section {
        padding: 120px 0 60px;
    }

    .hero-section {
        padding-top: 76px;
    }

    .services-section,
    .featured-section,
    .contact-section {
        padding-top: 100px;
    }

    .section-title,
    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-info-item {
        padding: 15px;
    }

    .contact-info-item i {
        font-size: 2rem;
    }
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(74, 58, 255, 0.3);
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-info-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary) !important;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--text-primary);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
}

select.form-control option {
    background-color: var(--background-gradient-1);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .contact-form, .contact-info {
        padding: 20px;
    }
    
    .contact-info-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .map-container {
        margin-top: 15px;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--navbar-bg);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-consent p {
    margin: 0;
    color: var(--text-primary);
}

.cookie-consent .buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Modal Styles */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.policy-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-modal-content {
    background: var(--navbar-bg);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.policy-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.policy-modal-close:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.policy-modal-content::-webkit-scrollbar {
    width: 8px;
}

.policy-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.policy-modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .cookie-consent {
        text-align: center;
    }
    
    .cookie-consent .buttons {
        flex-direction: column;
    }
    
    .policy-modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* Category Cards */
.categories-section {
    margin-bottom: 40px;
}

.category-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(74, 58, 255, 0.2);
}

.category-title {
    margin: 0;
    text-align: center;
}

.category-link {
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.category-link i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-link i,
.category-card.active .category-link i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.subcategory-list {
    list-style: none;
    padding: 0.5rem 0 0 2.5rem;
    margin: 0;
}

.subcategory-list li {
    margin-bottom: 0.5rem;
    display: block;
}

.subcategory-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    opacity: 0.85;
    border-radius: 5px;
    width: fit-content;
}

.subcategory-list li.active a,
.subcategory-list li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    opacity: 1;
}

@media (max-width: 768px) {
    .category-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .category-link i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .subcategory-list {
        padding-left: 2rem;
    }

    .subcategory-list li a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Kategori Sidebar Stilleri */
.categories-sidebar {
    background: var(--navbar-bg);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.category-section {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-section:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.category-section.active {
    background: rgba(255, 255, 255, 0.05);
}

.category-heading {
    margin: 0;
    padding: 0.5rem 0;
}

.category-title-link {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.category-title-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.category-title-link i {
    font-size: 1.2rem;
    width: 24px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.category-section:first-child .category-title-link {
    font-size: 1.2rem;
    font-weight: 600;
}

.category-section:first-child .category-title-link i {
    font-size: 1.3rem;
}

.category-section.active .category-title-link {
    color: var(--accent-color);
}

.subcategory-list {
    list-style: none;
    padding: 0.5rem 0 0 2.5rem;
    margin: 0;
}

.subcategory-list li {
    margin-bottom: 0.5rem;
}

.subcategory-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
    opacity: 0.85;
}

.subcategory-list li.active a,
.subcategory-list li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    opacity: 1;
}

@media (max-width: 768px) {
    .category-section:first-child {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .category-title-link {
        font-size: 1rem;
    }

    .category-section:first-child .category-title-link {
        font-size: 1.1rem;
    }

    .subcategory-list {
        padding-left: 2rem;
    }

    .subcategory-list li a {
        font-size: 0.9rem;
    }
}

.ilan-tipi-filter .btn,
.filter-reset .btn-outline-primary {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ilan-tipi-filter .btn:hover,
.filter-reset .btn-outline-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-primary);
}

.ilan-tipi-filter .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Footer Styles */
.footer {
    background: var(--footer-bg);
    backdrop-filter: blur(10px);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.footer ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.footer ul li a:hover::before {
    width: 6px;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    display: inline-block;
}

.footer hr {
    background: var(--border-color);
    opacity: 0.2;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer p,
    .footer .list-unstyled li a {
        font-size: 0.9rem;
    }
    
    .footer .social-links a {
        font-size: 1rem;
    }
    
    .footer .text-center p {
        font-size: 0.85rem;
    }
}

/* İletişim Sayfası Özel Stilleri */
.page-contact-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
}

.page-contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
}

.page-contact-info-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.page-contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.page-contact-info-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.page-contact-info-item:hover i {
    transform: scale(1.1);
    color: #fff;
    background: var(--accent-color);
}

.page-contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.page-contact-info-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.page-social-links {
    margin-top: 2rem;
    text-align: center;
}

.page-social-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-social-link {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.page-social-link:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .page-contact-info {
        grid-template-columns: 1fr;
    }

    .page-contact-info-item {
        padding: 1.2rem;
        min-height: 150px;
    }

    .page-contact-info-item i {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .page-contact-info-item h4 {
        font-size: 1rem;
    }

    .page-contact-info-item p {
        font-size: 0.9rem;
    }

    .page-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin: 0 0.3rem;
    }
}

/* Listing Modal Styles */
.listing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.listing-modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    margin: 20px auto;
    background: var(--navbar-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.listing-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.listing-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-gallery {
    margin: 0;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.fullscreen-modal .main-image {
    height: calc(100vh - 200px);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.fullscreen-modal .main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0;
    position: static;
    transform: none;
}

.main-image {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.show-large-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.show-large-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.thumbnail-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 5px 5px 15px;
    justify-content: flex-start;
    margin: 0;
    scrollbar-width: thin;
    min-height: 90px;
}

.thumbnail-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.thumbnail {
    flex: 0 0 140px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.thumbnail:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.modal-details {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    flex: 0 0 auto;
}

.modal-details h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-primary);
    line-height: 1.3;
}

.price-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.price {
    font-size: 36px;
    color: var(--accent-color);
    margin: 0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
}

.location {
    color: var(--text-secondary);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location i {
    color: var(--accent-color);
    font-size: 20px;
}

.description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 17px;
    margin-top: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.description::-webkit-scrollbar {
    width: 8px;
}

.description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.description::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .listing-modal {
        padding: 10px;
    }

    .listing-modal-content {
        width: 100%;
        margin: 10px auto;
        padding: 15px;
        gap: 15px;
    }

    .main-image {
        height: 350px;
    }

    .thumbnail {
        flex: 0 0 110px;
        height: 75px;
    }

    .modal-details {
        padding: 20px;
    }

    .modal-details h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .price {
        font-size: 28px;
    }

    .location {
        font-size: 16px;
    }

    .price-location {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .description {
        padding: 15px;
        max-height: 250px;
        font-size: 15px;
        margin-top: 20px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .show-large-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* İletişim Kartları */
.iletisim-bilgileri {
    margin-top: 2rem;
}

.contact-card {
    background: rgba(15, 28, 83, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

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

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

.phone-btn {
    background: #4CAF50;
}

.phone-btn:hover {
    background: #43A047;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BD5C;
}

.email-btn {
    background: #2196F3;
}

.email-btn:hover {
    background: #1E88E5;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1rem;
    }

    .contact-name {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .contact-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* İletişim Kartları */
.iletisim-bilgileri .contact-card {
    background: rgba(15, 28, 83, 0.8) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 0 !important;
}

.iletisim-bilgileri .contact-name {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.25rem !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

.iletisim-bilgileri .contact-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
}

.iletisim-bilgileri .contact-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
}

.iletisim-bilgileri .contact-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.iletisim-bilgileri .phone-btn {
    background: #4CAF50 !important;
}

.iletisim-bilgileri .phone-btn:hover {
    background: #43A047 !important;
}

.iletisim-bilgileri .whatsapp-btn {
    background: #25D366 !important;
}

.iletisim-bilgileri .whatsapp-btn:hover {
    background: #20BD5C !important;
}

.iletisim-bilgileri .email-btn {
    background: #2196F3 !important;
}

.iletisim-bilgileri .email-btn:hover {
    background: #1E88E5 !important;
}

@media (max-width: 768px) {
    .iletisim-bilgileri .contact-card {
        padding: 1rem !important;
    }

    .iletisim-bilgileri .contact-name {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .iletisim-bilgileri .contact-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
}

.iletisim-bilgileri .contact-btn {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 5px !important;
    position: relative !important;
}

.iletisim-bilgileri .contact-btn i {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

.iletisim-bilgileri .contact-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.iletisim-bilgileri .phone-btn {
    background: #4CAF50 !important;
}

.iletisim-bilgileri .whatsapp-btn {
    background: #25D366 !important;
}

.iletisim-bilgileri .email-btn {
    background: #2196F3 !important;
}

@media (max-width: 768px) {
    .iletisim-bilgileri .contact-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        margin: 0 3px !important;
    }
}

.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    overflow: hidden;
}

.fullscreen-modal .main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: transparent;
}

.fullscreen-modal .main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0;
}

.fullscreen-thumbnails {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 50px;
    overflow-x: auto;
}

.fullscreen-thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fullscreen-thumb.active {
    opacity: 1;
    border-color: var(--accent-color);
}

.fullscreen-thumb:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.fullscreen-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
}

.fullscreen-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.fullscreen-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.fullscreen-prev {
    left: 20px;
}

.fullscreen-next {
    right: 20px;
}

.fullscreen-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .fullscreen-modal .main-image {
        width: 95%;
        height: calc(100vh - 160px);
    }

    .fullscreen-thumbnails {
        bottom: 20px;
        padding: 0 30px;
    }

    .fullscreen-thumb {
        width: 80px;
        height: 60px;
    }

    .fullscreen-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .kategori-badge, .ilan-tipi-badge, .video-badge {
        padding: 2px 4px;
        font-size: 0.6em;
        letter-spacing: 0.1px;
        max-width: 100px;
        border-radius: 15px;
    }

    .video-badge i {
        font-size: 0.7em;
    }

    .badge-container {
        gap: 2px;
        margin-bottom: 0.4rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .kategori-badge, .ilan-tipi-badge, .video-badge {
        padding: 1px 3px;
        font-size: 0.55em;
        max-width: 80px;
        border-radius: 12px;
    }

    .badge-container {
        gap: 1px;
        margin-bottom: 0.3rem;
    }
} 