
body{
margin:0;
font-family:Segoe UI;
background:#0a0a0a;
color:#fff;
}

/* NAV */
.navbar{
display:flex;
justify-content:space-between;
letter-spacing:1px;
padding:15px;
background:#000;
border-bottom:1px solid #c9a24a;
position:sticky;
top:0;
}

.logo{
     position: relative;
  display: inline-block;
  overflow: hidden;
color:#c9a24a;
font-weight:700;
letter-spacing:4px;
font-size:18px;
text-transform:uppercase;
cursor:pointer;
transition:0.3s;
text-shadow:0 0 10px rgba(240, 172, 12, 0.3);
   opacity:0;
  filter: blur(10px);
  transform: translateY(-10px);
  animation: logoBlur 1s ease forwards;
}


.logo::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shine 6s infinite;
}

@keyframes shine{
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

@keyframes logoBlur{
  to{
    opacity:1;
    filter: blur(0);
    transform: translateY(0);
  }
}


.logo:hover{
text-shadow:0 0 20px rgba(201,162,74,0.8);
transform:scale(1.05);
}

/* HERO */
.hero{
height:600px;
background:url(img/luxx.jpg) center 85%/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero h1{
color:#c9a24a;
background:rgba(0,0,0,0.6);
padding:10px 15px;
font-size:32px;
letter-spacing:2px;
text-transform:uppercase;
}

/* VEHICLES */
.vehicles{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:20px;
}

.vehicle{
background:#111;
border:1px solid #c9a24a;
border-radius:10px;
overflow:hidden;
cursor:pointer;
transition:0.3s;
position:relative; /* EKLE */
height:320px;
display:flex;
flex-direction:column;
justify-content:space-between;

/* 🔥 önemli */
box-sizing:border-box;
padding-bottom:10px;
}
.vehicle:hover{
transform:scale(1.05);
border-color:#fff;
}

.vehicle img{
width:100%;
height:220px;
object-fit:cover;
}
 /* PRICE TAG */
.price-tag{
position:absolute;
top:12px;
left:12px;

padding:10px 18px;          /* 🔥 büyüdü */
font-size:18px;             /* 🔥 büyüdü */
font-weight:700;

background:linear-gradient(135deg,#c9a24a,#fff);
color:#000;

border-radius:8px;
box-shadow:0 0 20px rgba(201,162,74,0.9);

animation:pulse 2s infinite, floatTag 3s ease-in-out infinite;

z-index:2;

/* 🔥 daha güçlü görünüm */
letter-spacing:1px;
backdrop-filter: blur(4px);
border:1px solid rgba(255,255,255,0.3);
}

/* PARLAMA efekti */
.price-tag::after{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,0.7),transparent);
animation:shineTag 3s infinite;
}

/* ANIMATIONS */
@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}
}

@keyframes floatTag{
0%{transform:translateY(0);}
50%{transform:translateY(-4px);}
100%{transform:translateY(0);}
}

@keyframes shineTag{
0%{left:-100%;}
50%{left:100%;}
100%{left:100%;}
}

.vehicle p{
color:#c9a24a;
text-align:center;
}

.vehicle button{
background:#c9a24a;
border:none;
padding:10px;
width:calc(100% - 20px);
margin:10px;
cursor:pointer;
transition:0.3s;
box-sizing:border-box;
}
.vehicle button:hover{
background:#fff;
color:#000;
}

.vehicle button:active{
transform:scale(0.95);
}

/* FORM */
.form{
background:#111;
margin:20px;
padding:20px;
border:1px solid #c9a24a;
}

input,select{
width:100%;
height:45px;
padding:10px;
margin:5px 0;
background:#000;
color:#fff;
border:1px solid #c9a24a;
box-sizing:border-box;
font-size:14px;
}

/* iPhone FIX */
input[type="date"],
input[type="time"]{
  appearance: none;
  -webkit-appearance: none;
  height:45px;
}

.form button{
width:100%;
padding:12px;
background:#c9a24a;
border:none;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.form button:hover{
background:#fff;
color:#000;
}

.field{
  margin:8px 0;
}

.field label{
  display:block;
  font-size:12px;
  color:#c9a24a;
  margin-bottom:4px;
  letter-spacing:1px;
}

/* SLIDER */
.slider{
display:none;
position:fixed;
top:0;left:0;
width:100%;
height:100%;
background:#000;
justify-content:center;
align-items:center;
flex-direction:column;
z-index:999;
}

.slider img{
width:80%;
max-height:80%;
}

.slider button{
margin-top:10px;
padding:10px;
}

/* GALLERY */
.gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
padding:20px;
cursor: pointer;
}

.gallery img{
width:100%;
height:230px;       /* SABİT YÜKSEKLİK */
object-fit:cover;   /* KIRPAR AMA BOZMAZ */
border-radius:8px;  /* bonus: daha şık görünür */
}

#galleryPopup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#galleryPopup .popup-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#galleryPopup img {
  width: 80vw;
  height: 80vh;
  object-fit: contain;
}

#galleryPopup button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

#galleryPopup .prev { left: 20px; }
#galleryPopup .next { right: 20px; }

#galleryPopup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transform: none;
}
  

.support a{
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
}

.support svg{
width:36px;
height:36px;
fill:#fff;
transition:0.3s;
}

.support svg:hover{
fill:#c9a24a;
animation: shake 0.4s infinite;
transform: scale(1.15);
}

@keyframes shake{
0%{transform:translate(0,0) rotate(0deg);}
25%{transform:translate(1px,-1px) rotate(-2deg);}
50%{transform:translate(-1px,1px) rotate(2deg);}
75%{transform:translate(1px,1px) rotate(-1deg);}
100%{transform:translate(0,0) rotate(0deg);}
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:65px;
}

/* FOOTER */
.footer{
border-top:2px solid #c9a24a;
background:linear-gradient(180deg,#000,#0a0a0a);
padding:50px 20px 20px;
color:#fff;
}

.footer-container{
display:flex;
justify-content:space-between;
gap:30px;
max-width:1100px;
margin:auto;
flex-wrap:wrap;
}

.footer-box{
flex:1;
min-width:220px;
}

.footer h3{
color:#c9a24a;
margin-bottom:10px;
text-transform:uppercase;
letter-spacing:2px;
font-size:14px;
}

.footer p{
display:flex;
align-items:center;
gap:10px;
color:#bbb;
font-size:14px;
margin:8px 0;
transition:0.3s;
}

.footer p:hover{
color:#fff;
transform:translateX(5px);
}

/* ICON STYLE */
.footer-icon{
width:16px;
height:16px;
fill:#c9a24a;
flex-shrink:0;
}

.footer a{
color:#ccc;
transition:0.3s;
text-decoration: none;
}

.footer a:hover{
color:#c9a24a;
}

/* SOCIAL */
.social-icons{
display:flex;
gap:12px;
margin-top:10px;
}

.social{
display:flex;
align-items:center;
justify-content:center;
width:42px;
height:42px;
border:1px solid #c9a24a;
border-radius:50%;
transition:0.3s;
}

.social svg{
width:20px;
height:20px;
fill:#c9a24a;
}

.social:hover{
background:#c9a24a;
transform:scale(1.1);
}

.social:hover svg{
fill:#000;
}

/* BOTTOM */
.footer-bottom{
text-align:center;
margin-top:30px;
padding-top:15px;
border-top:1px solid rgba(201,162,74,0.3);
color:#777;
font-size:12px;
}

.transfer {
  padding: 80px 20px;
  background: #0a0a0a; /* DARK MODE UYUMLU */
  font-family: Arial, sans-serif;
}

.transfer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* TEXT */
.transfer-text {
  flex: 1;
}

.transfer-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #c9a24a; /* senin altın rengin */
}

.transfer-text p {
  color: #ccc; /* artık görünür */
  margin-bottom: 20px;
}

.transfer-text ul {
  list-style: none;
  padding: 0;
}

.transfer-text li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,162,74,0.2);
  position: relative;
  padding-left: 28px;
  color: #fff;
}

.transfer-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c9a24a;
}

/* VISUAL */
.transfer-visual {
  flex: 1;
  height: 400px;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.map {
    width: 90%;
  height: 400px;
  display: block;
}

/* ROUTE LINE */
.route-line {
   fill: none;
  stroke: #c9a24a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawRoute 3s ease forwards;
}

/* ANIMATION */

@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}

/* POINTS */
.point-start {
  fill: #c9a24a;
}

.point-end {
  fill: #fff;
  stroke: #c9a24a;
  stroke-width: 3;
}

/* LABEL */
.label {
  fill: #ccc;
  font-size: 14px;
}


.section-title{
text-align:center;
margin:50px 0 20px;
position:relative;
}

.section-title h2{
color:#c9a24a;
font-size:26px;
letter-spacing:3px;
text-transform:uppercase;
display:inline-block;
padding:0 20px;
background:#0a0a0a;
position:relative;
z-index:2;
}

.section-title::before{
content:"";
position:absolute;
top:50%;
left:0;
width:100%;
height:1px;
background:linear-gradient(to right, transparent, #c9a24a, transparent);
z-index:1;
}



.review-slider{
overflow:hidden;
position:relative;
padding:20px;
}

.review-track{
display:flex;
gap:20px;
animation:scrollReviews 30s linear infinite;
}

.review-card{
min-width:320px;
background:#111;
border:1px solid #c9a24a;
padding:20px;
border-radius:12px;
transition:0.3s;
box-shadow:0 0 15px rgba(201,162,74,0.2);
}

.review-card:hover{
transform:translateY(-5px) scale(1.03);
border-color:#fff;
}

.stars{
color:#c9a24a;
font-size:18px;
margin-bottom:10px;
}

.review-card p{
color:#ccc;
font-size:14px;
margin-bottom:10px;
line-height:1.5;
}

.review-card span{
color:#fff;
font-size:13px;
opacity:0.8;
}

.tripadvisor-badge{
text-align:center;
margin:20px;
color:#ccc;
font-size:14px;
}

.tripadvisor-badge a{
color:#c9a24a;
text-decoration:none;
}

.tripadvisor-badge a:hover{
color:#fff;
}

@keyframes scrollReviews{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}







/* MOBILE */
@media(max-width:768px){

.vehicles,.gallery{grid-template-columns:1fr}
.hero{height:300px}

.vehicle{
height:auto;
}

.vehicle img{
height:260px;
}

.vehicle button{
width:calc(100% - 20px);
margin:10px;
}

.gallery img{
height:auto;
object-fit:contain;
background:#000;
}

.review-card{
min-width:260px;
}

.footer-container{
flex-direction:column;
text-align:center;
}

.footer-box{
width:100%;
  text-align:center; /* EKLE */
}

 .footer-box p{
    justify-content:center; /* 🔥 en önemli satır */
  }

  .footer-box a{
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }

.social{
width:48px;
height:48px;
}

  .transfer-container {
    flex-direction: column;
    text-align: center;
  }

  .transfer-visual {
    height: 250px;
  }

}
