*{
  box-sizing:border-box;
}
body{
  margin:0;
  font-family:'Poppins', sans-serif;
}
.header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}

.header{
  width:100%;
}


.container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
  position:relative;
}

.header .container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;

  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  height:80px;
}

.right{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.logo img{
  display:block;
  height:80px;
  width:auto;
}
.menu{
  display:flex;
  gap:20px;
  align-items:center;
}
.menu > a,
.menu .dropbtn{
  text-decoration:none;
  color:#333;
  font-weight:600;
  font-size:16px;
  padding:8px 0;
  display:inline-block;
}
.dropdown{
  position:relative;
  
}

.dropdown::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:14px;
}
.dropdown:hover .submenu{
  display:block;
}
.submenu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:260px;
  padding:10px;
  border-radius:14px;
  box-shadow:0 16px 40px rgba(0,0,0,0.12);
  z-index:999;
  border:1px solid #eee;
}

.submenu a{
  display:block;
  padding:12px 14px;
  border-radius:10px;
  color:#333;
  text-decoration:none;
  font-size:14px;
  transition:0.2s ease;
  white-space:nowrap;
}

.submenu a:hover{
  background:#f5f7fb;
  color:#e7b92b;
}

.submenu.active{
  display:block;
}

.right{
  display:flex;
  align-items:center;
  gap:12px;
}

.auth{
  display:flex;
  gap:10px;
}

.auth a{
  text-decoration:none;
  color:#333;
  font-size:14px;
  font-weight:600;
}

.cards{
  max-width:1200px;
  margin:auto;
  padding:50px 15px;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.cart-box{
  position:relative;
  display:flex;
  align-items:center;
}

.cart-box i{
    font-size:18px !important;
    line-height:1 !important;
}

.cart-count{
  position:absolute;
  top:-8px;
  right:-10px;
  background:#e7b92b;
  color:#fff;
  font-size:12px;
  padding:2px 6px;
  border-radius:50%;
}

.cart-icon {
    width: auto;
    min-width: 34px;
    height: auto;
    min-height: 34px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: #fff;
}

.fa-cart-shopping{
    color:#000000 !important;
}
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
}
.mobile-auth{
  display:none;
  padding:10px 16px 0 16px;
}

.mobile-auth a{
  display:block;
  padding:12px;
  border-radius:8px;
  margin-bottom:8px;
  text-align:center;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
}

.mobile-auth a.login{
  background:#f1f1f1;
  color:#333;
}

.mobile-auth a.register{
  background:#e7b92b;
  color:#fff;
}
.topbar{
  background:#f8fafc;
  border-bottom:1px solid #e5e7eb;
  font-size:13px;
}
.topbar-inner{
  max-width:1200px;
  margin:auto;
  padding:8px 15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.top-left, .top-right{
  display:flex;
  gap:12px;
  align-items:center;
}

.top-right a{
  display:flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:#334155;
  font-weight:600;
}

.top-right a i{
  font-size:13px;
}
.cards{
  max-width:1200px;
  margin:auto;
  padding:50px 15px;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.currency{
  font-size:12px;
  vertical-align:super;
}
/* CARD */
.card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;

  padding:25px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;

  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  transition:0.25s;
}
.card:hover{
  transform:translateY(-8px);
  border-color:#e7b92b;
  box-shadow:0 18px 35px rgba(0,0,0,0.12);
}


/* TITLE */
.card h3{
  margin:0;
  font-size:18px;
  text-align:center;
  font-weight:700;
}

/* PRICE */
.price{
  text-align:center;
  font-size:30px;
  font-weight:800;
  color:#e7b92b;
  margin:10px 0 20px;
}

.price small{
  font-size:13px;
  color:#64748b;
  font-weight:500;
}

/* FEATURES */
.card ul{
  list-style:none;
  padding:0;
  margin:0 0 20px 0;

  display:flex;
  flex-direction:column;
  gap:10px;
}

/* İKON + TEXT TAM HİZALI */
.card ul li{
  display:flex;
  align-items:center;
  gap:10px;

  font-size:14px;
  color:#334155;
}

/* İKON SABİT GENİŞLİK */
.card ul li i{
  width:18px;
  text-align:center;
  color:#e7b92b;
  flex-shrink:0;
}

/* BUTTON */
.card a{
  display:block;
  text-align:center;

  padding:10px 16px;
  background:#e7b92b;
  color:#fff;

  text-decoration:none;
  border-radius:10px;

  font-weight:600;
  transition:0.2s;
}

.subtitle{
  margin:6px 0 0;
  font-size:13px;
  color:#64748b;
  font-weight:500;
  text-align:center; /* ORTALAMA */
}

.card a:hover{
  background:#e7b92b;
}


.trust-section{
  max-width:900px;
  margin:40px auto 20px;
  text-align:center;
  padding:0 15px;
}

.trust-section h2{
  font-size:26px;
  margin-bottom:10px;
  color:#0f172a;
}

.trust-section p{
  color:#64748b;
  font-size:15px;
  line-height:1.6;
}


/* BADGES */
.trust-badges{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:15px;
}
.badge{
  background:#f1f5f9;
  border:1px solid #e2e8f0;

  padding:8px 12px;
  border-radius:20px;

  font-size:13px;
  color:#334155;
  font-weight:600;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background:#fff;
  border:1px solid #e8ecf3;
  border-radius:12px;
  color:#374151;
  font-size:14px;
  font-weight:600;
  box-shadow:0 6px 16px rgba(0,0,0,0.04);
}

.features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:20px;
}

.features div{
  font-size:14px;
  color:#334155;
}

.btn{
  display:inline-block;
  background:#e7b92b;
  color:#fff;
  text-decoration:none;
  padding:12px 22px;
  border-radius:12px;
  font-weight:700;
  transition:0.2s ease;
}

.btn:hover{
  background:#e7b92b;
}

.btn-outline{
  background:#fff;
  color:#e7b92b;
  border:1px solid #e7b92b;
}

.btn-outline:hover{
  background:#f4f7ff;
}

.hero{
  max-width:1200px;
  margin:auto;
  padding:50px 15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.hero-left{
  max-width:560px;
}

.hero-left h1{
  font-size:48px;
  line-height:1.1;
  margin:0 0 18px 0;
  color:#111827;
}

.hero-left p{
  font-size:16px;
  color:#475569;
  margin-bottom:20px;
}

.hero-desc{
  font-size:17px;
  line-height:1.7;
  color:#5b6472;
  margin:0 0 22px 0;
  max-width:520px;
}

.hero-features{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:26px;
}

.hero-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#eef4ff;
  color:#e7b92b;
  font-size:13px;
  font-weight:700;
  margin-bottom:14px;
}

.hero-right{
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
  padding:0;
  border-radius:0;
  box-shadow:none;
}

.hero-right img{
  display:block;
  width:100%;
  max-width:520px;
  height:auto;
  border-radius:0;
  object-fit:cover;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background:#fff;
  border:1px solid #e8ecf3;
  border-radius:12px;
  color:#374151;
  font-size:14px;
  font-weight:600;
  box-shadow:0 6px 16px rgba(0,0,0,0.04);
}

.feature-item i{
  color:#e7b92b;
}


.all-packages{
  display:block !important;
  margin-top:10px;

  font-size:13px !important;
  color:#64748b !important;

  text-decoration:none !important;
  text-align:center;

  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;

  opacity:1 !important;
  visibility:visible !important;

  transition:0.2s;
}

.all-packages:hover{
  color:#e7b92b !important;
  background:transparent !important;
}



.why-us{
    max-width:1200px;
    margin:70px auto;
    padding:0 15px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:32px;
    margin-bottom:10px;
    color:#111827;
}

.section-title p{
    color:#6b7280;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:30px 25px;
    text-align:center;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.why-card i{
    font-size:38px;
    color:#e7b92b;
    margin-bottom:15px;
}

.why-card h3{
    margin-bottom:10px;
    color:#111827;
}

.why-card p{
    font-size:14px;
    line-height:1.6;
    color:#6b7280;
}



.testimonials{
    max-width:1200px;
    margin:80px auto;
    padding:0 15px;
    overflow:hidden;
}

.testimonial-title{
    text-align:center;
    margin-bottom:40px;
}

.testimonial-title h2{
    font-size:32px;
    margin-bottom:10px;
}

.testimonial-title p{
    color:#6b7280;
}

.testimonial-slider{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:20px;
    animation:slideTestimonials 24s infinite linear;
}

.testimonial-track:hover{
    animation-play-state: paused;
}

.testimonial-card{
    min-width:calc(33.333% - 14px);
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.testimonial-card p{
    line-height:1.7;
    color:#4b5563;
}

.testimonial-card h4{
    margin-top:15px;
    margin-bottom:0;
}

.stars{
    color:#f59e0b;
    font-size:18px;
    margin-bottom:10px;
}

@keyframes slideTestimonials{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}


/* ================= FOOTER ================= */
.footer{
  background:#0f172a;
  color:#cbd5e1;
  margin-top:80px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  padding:60px 15px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;
}

.footer-box h3,
.footer-box h4{
  color:#fff;
  margin-bottom:20px;
}

.footer-box p{
  line-height:1.8;
  color:#94a3b8;
}

.footer-box a{
  display:block;
  color:#94a3b8;
  text-decoration:none;
  margin-bottom:10px;
  transition:.3s;
}

.footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.footer-logo img{
    max-width:450px;
    width:100%;
    height:auto;
    display:block;
}

.footer-box a:hover{
  color:#e7b92b;
}

.social{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.social a{
  width:38px;
  height:38px;
  background:#e7b92b;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.social a:hover{
  background:#e7b92b;
}

.footer-bottom{
  text-align:center;
  padding:20px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#94a3b8;
}

.whatsapp-float{
    position:fixed;
    left:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:32px;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
}



/* Mobile */
@media(max-width:768px){
  .hamburger{
    display:block;
  }
  
  .header{
  width:100%;
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}

 .header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:70px;
  }

  
  
  
  .menu{
    display:none;
    flex-direction:column;
    align-items:stretch;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-top:1px solid #eee;
    z-index:999;
    padding:4px 0;
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
    gap:0;
  }
  .menu.active{
    display:flex;
  }
  .menu > a,
  .menu .dropdown > a{
    display:block;
    padding:12px 14px;
    color:#333;
    border-bottom:1px solid #f2f2f2;
    font-size:15px;
    text-decoration:none;
    margin:0;
  }
   .dropdown{
    width:100%;
    margin:0;
    padding:0;
  }
  .submenu{
    display:none;
    position:static;
    box-shadow:none;
    min-width:100%;
    background:#fff;
    margin:0;
    border-radius:0;
    border:none;
    border-top:1px solid #f1f1f1;
    padding:0;
  }
  .logo img{
    height:60px;
  }

  .submenu.active{
    display:block;
  }
   .submenu a{
    display:block;
    padding:12px 18px;
    font-size:14px;
    color:#444;
    border-bottom:1px solid #f5f5f5;
    text-decoration:none;
    margin:0;
    border-radius:0;
    white-space:normal;
  }
  .submenu a:last-child{
    border-bottom:none;
  }

  .auth{
    display:none;
  }

  .mobile-auth{
    display:block;
    padding:8px 12px 0 12px;
    margin-top:4px;
  }

  .mobile-auth a{
    display:block;
    padding:10px;
    border-radius:8px;
    margin-bottom:6px;
    text-align:center;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
  }

 .cart-icon {
    color: #fff; /* veya istediğin renk, örn: #4285F4 */
}
.cards{
    grid-template-columns:repeat(2,1fr);
  }
  .cards{
    grid-template-columns:1fr;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .social{
    justify-content:center;
  }
  .hero{
    flex-direction:column;
  }
  .hero-right{
    display:none;
  }

  .hero-left h1{
    font-size:32px;
  }

  .hero-desc{
    font-size:15px;
  }

  .hero-features{
    gap:10px;
  }
.feature-item{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-actions .btn{
    text-align:center;
    width:100%;
  }

  .hamburger{
    display:block;
  }
 .footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.footer-logo img{
    max-width:450px;
    width:100%;
    height:auto;
    display:block;
}
.whatsapp-float{
        width:55px;
        height:55px;
        left:15px;
        bottom:15px;
        font-size:28px;
    }
.why-grid{
        grid-template-columns:1fr;
    }
    .testimonial-card{
        min-width:100%;
    }

    .testimonial-track{
        animation-duration:18s;
    }
}

@media(min-width:769px){
  .dropdown:hover .submenu{
    display:block;
  }
}







































