/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #ffffff;
    color: #111827;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}


/* ==========================
   SECTION TITLE
========================== */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title p {
    color: #6b7280;
    font-size: 18px;
}


/* ==========================
   HERO SLIDER
========================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
}

#slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

/*.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.55)
        );

    z-index: 2;
}

.slide-content {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 10;

    width: 90%;
    max-width: 900px;

    text-align: center;
    color: white;
}

.slide-content h1 {

    font-size: 56px;
    font-weight: 800;

    margin-bottom: 20px;
}

.slide-content p {

    font-size: 22px;
    line-height: 1.6;
}


/* ==========================
   SLIDER ARROWS
========================== */

.slider-arrow {

    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;

    background: rgba(255,255,255,.15);

    backdrop-filter: blur(10px);

    color: white;

    border-radius: 50%;

    cursor: pointer;

    z-index: 30;

    font-size: 24px;

    transition: .3s;
}

.slider-arrow:hover {

    background: rgba(255,255,255,.3);
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}


/* ==========================
   DOTS
========================== */

#slider-dots {

    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;
    gap: 10px;

    z-index: 30;
}

.dot {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: rgba(255,255,255,.5);

    cursor: pointer;
}

.dot.active {
    background: white;
}


/* ==========================
   DEVICES
========================== */

.devices-section {

    padding: 100px 0;

    background: #f9fafb;
}

.devices-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;
}

.device-card {

    background: white;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    transition: .3s;

    border: 1px solid #e5e7eb;
}

.device-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.08);
}

.device-icon {

    font-size: 52px;

    margin-bottom: 20px;
}

.device-card h3 {

    font-size: 22px;

    margin-bottom: 10px;
}

.device-card p {

    color: #6b7280;
}


/* ==========================
   PACKAGES
========================== */

.packages-section {

    padding: 100px 0;
}

#packages-container {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.package-card {

    background: white;

    border-radius: 24px;

    padding: 40px;

    border: 1px solid #e5e7eb;

    transition: .3s;
}

.package-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

.package-card.featured {

    border: 2px solid #2563eb;
}

.package-name {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 20px;
}

.package-price {

    font-size: 48px;

    color: #2563eb;

    font-weight: 800;

    margin-bottom: 30px;
}

.package-period {

    font-size: 18px;
}

.package-button {

    display: block;

    background: #2563eb;

    color: white;

    text-align: center;

    padding: 15px;

    border-radius: 12px;

    margin-top: 25px;

    font-weight: 600;

    transition: .3s;
}

.package-button:hover {

    background: #1d4ed8;
}


/* ==========================
   TESTIMONIALS
========================== */

.testimonials-section {

    background: #f9fafb;

    padding: 100px 0;
}

#testimonials-container {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;
}

.testimonial-card {

    background: white;

    border-radius: 20px;

    padding: 30px;

    border: 1px solid #e5e7eb;
}

.testimonial-text {

    line-height: 1.8;

    margin-bottom: 25px;
}

.testimonial-user {

    font-weight: 700;
}

.testimonial-city {

    color: #6b7280;
    font-size: 14px;
}


/* ==========================
   FOOTER
========================== */

footer {

    background: #0f172a;

    color: white;

    padding: 70px 0 30px;
}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 40px;
}

.footer-logo {

    width: 180px;

    margin-bottom: 20px;
}

.footer-col h4 {

    margin-bottom: 20px;
}

.footer-col a {

    display: block;

    color: #cbd5e1;

    margin-bottom: 12px;
}

.footer-col p {

    color: #cbd5e1;

    margin-bottom: 10px;
}

.footer-bottom {

    margin-top: 50px;

    border-top: 1px solid rgba(255,255,255,.1);

    padding-top: 20px;

    text-align: center;

    color: #94a3b8;
}


/* ==========================
   WHATSAPP
========================== */

.whatsapp-btn {

    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 999;

    background: #25D366;

    color: white;

    padding: 14px 22px;

    border-radius: 50px;

    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(37,211,102,.35);

    transition: .3s;
}

.whatsapp-btn:hover {

    transform: translateY(-3px);
}


/* İçerik Önizleme */

.content-preview {
    padding: 80px 0;
    background: #fff;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.platform-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.gallery-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    margin-bottom: 40px;
    padding-bottom: 10px;
}

.gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.gallery-item {
    flex: 0 0 250px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-grid-home {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.content-card-home {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: .3s;
}

.content-card-home:hover {
    transform: translateY(-5px);
}

.content-card-home h3 {
    margin-bottom: 10px;
}

@media(max-width:768px){

    .content-grid-home{
        grid-template-columns:1fr;
    }

    .gallery-item{
        flex:0 0 220px;
        height:140px;
    }

    .platform-logos img{
        height:40px;
    }

}

/* Kurulum Önizleme */

.setup-preview {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.setup-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.setup-card-home {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

.setup-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.setup-icon-home {
    font-size: 48px;
    margin-bottom: 15px;
}

.setup-card-home h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.setup-card-home p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 992px) {

    .setup-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .setup-preview {
        padding: 100px 0 60px;
    }

    .setup-grid-home {
        grid-template-columns: 1fr;
    }

}
.setup-icon-home {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.setup-icon-home svg {
    width: 42px;
    height: 42px;
}

/* Bayilik Sayfası */

.bayilik-preview {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.bayilik-hero {
    text-align: center;
    margin-bottom: 60px;
}

.bayilik-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.bayilik-hero p {
    max-width: 800px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.1rem;
}

.bayilik-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.bayilik-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

.bayilik-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.bayilik-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.bayilik-card h3 {
    margin-bottom: 10px;
}

.bayilik-card p {
    color: #64748b;
}

.bayilik-pricing {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.bayilik-price-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.bayilik-price-card h3 {
    margin-bottom: 15px;
}

.bayilik-price-card p {
    margin-bottom: 25px;
    color: #64748b;
}

.bayilik-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: .3s;
}

.bayilik-btn:hover {
    background: #1d4ed8;
}

@media(max-width:768px){

    .bayilik-features{
        grid-template-columns:1fr;
    }

    .bayilik-pricing{
        grid-template-columns:1fr;
    }

    .bayilik-hero h1{
        font-size:2rem;
    }

}

#packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 25px;
}

.package-card {
    background: #223248;
    border-radius: 12px;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.package-name {
    font-size: 32px;
    font-weight: 700;
    color: #d10beb;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex: 1;
}

.package-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #d6dbe1;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #cfd5db;
}

.package-price {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.package-button {
    display: block;
    width: 100%;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;

    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;

    animation: scrollGallery 25s linear infinite;
}

.gallery-track img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes scrollGallery {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}