/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.wrap {
    padding: 15px 15px 0;
    height: 100%
}

body {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #363636;
    line-height: 1.44;
    font-size: 15px;
    min-height: 100vh;
}

.site-header {
    height: 52px;
    width: 100%;
    position: relative;
    margin: 0;
    color: #fff;
    background: linear-gradient(135deg, #ff1744, #e91e63, #9c27b0, #673ab7);
}

.site-header .branding {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px 55px;
    z-index: 9;
    height: 52px;
    line-height: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sticky-nav .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.sticky-nav {
    padding-top: 52px
}

.wrap {
    padding: 5px;
}

.warning {
    color: white;
    background: linear-gradient(135deg, #ff1744, #e91e63, #9c27b0, #673ab7);
    padding: 20px;
    font-size: 13px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.phone {
    width: 100%;
    height: 50px;
    text-indent: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    position: absolute;
    z-index: 10;
    bottom: 5px;
    display: inline-block;
    text-align: left;
}

.phone svg {
    width: 25px !important;
    height: 25px !important;
    vertical-align: middle;
    margin-right: 3px;
    margin-bottom: 5px;
}

.phone .click-text {
    font-size: 12px;
    font-weight: 400;
    display: block;
    opacity: 0.9;
}

@keyframes moveSlideshow {
    100% {
        transform: translateX(-66.6666%)
    }
}

.listings {
    width: 100%;
    float: left
}

.listing {
    width: 100%;
    height: 170px;
    float: left;
    margin: 8px auto;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    border-radius: 21px;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    background: none;
    border: 2px solid black;
}

.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 21px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 1020px;
    /* 6 görsel x 170px */
    height: 100%;
    animation: slider-move 12s linear infinite;
}

.slider-img {
    width: 140px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 0;
}

@keyframes slider-move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-510px);
        /* 3 görsel x 170px, yani bir tur */
    }
}

.slider-img.active {
    opacity: 1;
    z-index: 2;
}

.listing:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.listing small {
    background: url(/assets/img/bg.png) left top no-repeat;
    z-index: 2;
    left: 0;
    width: 100%;
    height: 170px;
    position: absolute;
    top: 0;
    pointer-events: auto;
}

.listing .title,
.listing .description,
.listing .phone {
    position: relative;
    z-index: 3;
}

.listing .image {
    width: 2526px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: contain !important;
    animation: moveSlideshow 25s linear infinite
}

.listing a {
    display: block;
    text-decoration: none;
    margin-top: 20px;
}

.listing .title {
    font-weight: 600;
    font-size: 24px;
    font-family: 'Times New Roman', serif;
    color: #fff;
    position: relative;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.listing .description {
    width: 140px;
    height: 60px;
    position: relative;
    font-size: 14px;
    top: 10px;
    z-index: 10;
    left: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 20px;
}

/* Model Detail Styles */
.model-detail {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.gallery {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: none;
}

.gallery img.active {
    display: block;
}

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

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

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-arrow.prev {
    left: 15px;
}

.slider-arrow.next {
    right: 15px;
}

.model-info h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.model-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-info li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-info li:last-child {
    border-bottom: none;
}

.model-info strong {
    color: #333;
    font-weight: 600;
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery {
    position: relative;
    width: 100%;
    height: 320px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery img {
    max-width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: none;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-arrow.prev {
    left: 15px;
}

.slider-arrow.next {
    right: 15px;
}

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

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

.slider-dot.active {
    background: #4facfe;
    transform: scale(1.2);
}

.info-section {
    padding: 0 24px 10px 24px;
}

.info-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1.1px;
    text-align: center;
    margin-bottom: 18px;
}

.info-list {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: nowrap;
}

.info-item {
    flex: 1 1 31%;
    max-width: 32%;
    min-width: 0;
    background: #fff;
    margin-bottom: 0;
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.98rem;
    color: #333;
    box-sizing: border-box;
    font-weight: bold;
}

@media (max-width: 600px) {
    .info-list {
        gap: 4px;
        flex-wrap: nowrap;
    }

    .info-item {
        flex: 1 1 31%;
        max-width: 32%;
        min-width: 0;
        padding: 8px 2px;
        font-size: 0.93rem;
    }
}

.info-label {
    font-weight: 600;
    color: #4facfe;
    margin-bottom: 2px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 22px auto 0 auto;
    padding: 13px 0;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.08);
    border: 1px solid #fff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    gap: 10px;
}

.whatsapp-btn svg {
    width: 22px;
    height: 22px;
}

.desc-section {
    padding: 20px;
    color: #444;
    font-size: 1.08rem;
    line-height: 1.6;
}

.border-radius-0 {
    border-radius: 0;
}

.mb-0 {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .container {
        max-width: 100vw;
        margin: 0;
        border-radius: 0;
    }

    .gallery {
        height: 200px;
    }

    .info-section,
    .desc-section {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}


.banner {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 8px 32px rgba(0, 180, 219, 0.3);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    animation: slide 3s linear infinite;
}

.banner-small {
    height: 75px;
    background: red
}


@keyframes slide {
    0% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

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

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display:flex;
    align-items:center;
    gap:5px;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

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

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 10%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60px;
    right: 15%;
    animation-delay: 2s;
}

.circle:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 30px;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .main-text {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: .8rem;
    }
}

.main-text {
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: textPulse 2s ease-in-out infinite;
    text-align: center;
}

@keyframes textPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.subtitle {
    color: white;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInOut 3s ease-in-out infinite;
    text-align: center;
    font-style: italic;
    margin-bottom: 10px;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}