body{
margin:0;
font-family:Arial,sans-serif;
background:#000;
color:white;
}
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#050505;
border-bottom:1px solid #b68b2c;
}
.logo-wrap{
display:flex;
align-items:center;
gap:15px;
}
.logo{
width:70px;
height:70px;
object-fit:contain;
}
h1{
margin:0;
font-size:26px;
}
header p{
margin:0;
color:#c9a44d;
}
.btn,.book{
background:#c9a44d;
padding:12px 22px;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:10px;
}
.hero{
  background-position:center center;
height:85vh;
background:url('hero-baku.jpg') center/cover;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}
.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.65);
}
.content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}
.content h2{
font-size:64px;
margin-bottom:20px;
}
.content p{
font-size:22px;
line-height:1.6;
margin-bottom:30px;
}
.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:50px 20px;
}
.card{
background:#111;
border:1px solid #c9a44d;
padding:40px 20px;
text-align:center;
font-size:22px;
border-radius:16px;
}
footer{
text-align:center;
padding:30px;
border-top:1px solid #222;
color:#aaa;
}
@media(max-width:768px){
header{
flex-direction:column;
gap:15px;
}
.content h2{
font-size:42px;
}
.content p{
font-size:18px;
}
}


/* Header menu visibility fix */
.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.menu-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border:1px solid #c9a44d;
  border-radius:12px;
  background:#080808;
  color:#c9a44d;
  font-size:30px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
}
@media(max-width:768px){
  header{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    padding:18px 14px;
  }
  .logo-wrap{
    flex:1;
    min-width:0;
  }
  .logo{
    width:62px;
    height:62px;
  }
  h1{
    font-size:24px;
    line-height:1.1;
  }
  header p{
    font-size:16px;
  }
  .header-actions{
    flex-shrink:0;
  }
  header .btn{
    display:none;
  }
  .menu-btn{
    display:flex !important;
  }
}

.mobile-menu{
  display:none;
  position:fixed;
  top:98px;
  right:14px;
  left:14px;
  z-index:9999;
  background:#070707;
  border:1px solid #c9a44d;
  border-radius:18px;
  padding:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.65);
}
.mobile-menu.open{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile-menu a{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  padding:14px 16px;
  border-bottom:1px solid rgba(201,164,77,.25);
}
.mobile-menu a:last-child{
  border-bottom:0;
}
.mobile-menu .menu-whatsapp{
  background:#c9a44d;
  color:#000;
  border-radius:12px;
  text-align:center;
  font-weight:800;
  margin-top:6px;
}

/* Fleet + Contact improvements */
.fleet-section, .contact-section{
  padding:70px 28px;
  background:#000;
}
.fleet-section .eyebrow, .contact-section .eyebrow{
  color:#c9a44d;
  text-transform:uppercase;
  letter-spacing:8px;
  font-weight:800;
}
.fleet-section h2, .contact-card h2{
  font-size:44px;
  line-height:1.05;
  margin:18px 0;
}
.fleet-intro, .contact-card p{
  color:#d0d0d0;
  font-size:19px;
  line-height:1.6;
}
.fleet-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  margin-top:30px;
}
.fleet-card{
  background:#111;
  border:1px solid rgba(201,164,77,.55);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
}
.fleet-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}
.fleet-card h3{
  font-size:24px;
  margin:20px 20px 8px;
}
.fleet-card p{
  color:#cfcfcf;
  margin:0 20px 24px;
  line-height:1.5;
}
.contact-card{
  background:#111;
  border:1px solid rgba(201,164,77,.55);
  border-radius:28px;
  padding:36px 30px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.contact-card a, .contact-card span{
  color:#f1d27a;
  font-size:20px;
  text-decoration:none;
}
.whatsapp-wide{
  margin-top:16px;
  background:#c9a44d;
  color:#000 !important;
  font-weight:900;
  text-align:center;
  padding:16px;
  border-radius:16px;
}
@media(max-width:768px){
  .fleet-section, .contact-section{padding:56px 18px;}
  .fleet-section h2, .contact-card h2{font-size:36px;}
}


.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  padding:70px 28px;
  background:#000;
}
.service-card{
  min-height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:30px;
  border:1px solid rgba(201,164,77,.75);
  border-radius:34px;
  background:linear-gradient(145deg,#050505,#0f0f0f);
  color:#fff;
  font-size:42px;
  font-weight:700;
  box-shadow:0 25px 60px rgba(0,0,0,.5);
  transition:.35s ease;
}
.service-card:hover{
  transform:translateY(-8px);
  border-color:#d8b25a;
}
@media(max-width:768px){
  .services{
    padding:50px 18px;
    grid-template-columns:1fr;
  }
  .service-card{
    min-height:150px;
    font-size:26px;
    border-radius:28px;
  }
}

.about-section{
  padding:70px 28px;
  background:#000;
}
.about-card{
  background:#111;
  border:1px solid rgba(201,164,77,.55);
  border-radius:28px;
  padding:40px 32px;
}
.about-card h2{
  font-size:42px;
  margin:18px 0;
}
.about-card p{
  color:#d1d1d1;
  font-size:20px;
  line-height:1.7;
}
@media(max-width:768px){
  .about-section{
    padding:55px 18px;
  }
  .about-card h2{
    font-size:34px;
  }
  .about-card p{
    font-size:18px;
  }
}


/* Premium Cars Home Section */
.premium-cars-home{
  background:
    radial-gradient(circle at top right, rgba(201,164,77,.18), transparent 38%),
    linear-gradient(145deg,#000,#070707 55%,#000);
  padding:70px 28px;
  border-top:1px solid rgba(201,164,77,.45);
  border-bottom:1px solid rgba(201,164,77,.35);
}
.premium-cars-image{
  max-width:980px;
  margin:0 auto;
  border:1px solid rgba(201,164,77,.65);
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.75), 0 0 50px rgba(201,164,77,.13);
}
.premium-cars-image img{
  width:100%;
  display:block;
  object-fit:cover;
}
.premium-cars-content{
  max-width:900px;
  margin:32px auto 0;
  background:rgba(10,10,10,.86);
  border:1px solid rgba(201,164,77,.55);
  border-radius:30px;
  padding:36px 30px;
  text-align:center;
}
.premium-cars-content .eyebrow{
  color:#c9a44d;
  text-transform:uppercase;
  letter-spacing:8px;
  font-weight:900;
}
.premium-cars-content h2{
  color:#fff;
  font-size:46px;
  line-height:1.08;
  margin:18px 0;
}
.premium-cars-content p{
  color:#d8d8d8;
  font-size:20px;
  line-height:1.65;
  margin:0 auto 26px;
  max-width:760px;
}
.premium-cars-btn{
  display:inline-block;
  background:#c9a44d;
  color:#000;
  text-decoration:none;
  font-weight:900;
  padding:17px 34px;
  border-radius:18px;
  box-shadow:0 14px 45px rgba(201,164,77,.22);
}
@media(max-width:768px){
  .premium-cars-home{
    padding:52px 18px;
  }
  .premium-cars-image{
    border-radius:24px;
  }
  .premium-cars-content{
    border-radius:24px;
    padding:30px 22px;
  }
  .premium-cars-content h2{
    font-size:34px;
  }
  .premium-cars-content p{
    font-size:18px;
  }
}


/* Final Our Cars Gallery */
.fleet-section{
  padding:80px 28px;
  background:
    radial-gradient(circle at top left, rgba(201,164,77,.12), transparent 35%),
    #000;
}
.fleet-section > .eyebrow{
  display:block;
  max-width:1180px;
  margin:0 auto 12px;
  color:#c9a44d;
  text-transform:uppercase;
  letter-spacing:8px;
  font-weight:900;
}
.fleet-section > h2{
  max-width:1180px;
  margin:0 auto 16px;
  font-size:48px;
  color:#fff;
  line-height:1.05;
}
.fleet-intro{
  max-width:900px;
  margin:0 auto 34px;
  color:#d1d1d1;
  font-size:20px;
  line-height:1.65;
}
.fleet-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}
.fleet-card{
  background:linear-gradient(145deg,#070707,#121212);
  border:1px solid rgba(201,164,77,.72);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(0,0,0,.65), 0 0 40px rgba(201,164,77,.08);
}
.fleet-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  border-bottom:1px solid rgba(201,164,77,.35);
}
.fleet-card-body{
  padding:26px 24px 28px;
}
.fleet-card h3{
  color:#fff;
  font-size:28px;
  margin:0 0 8px;
  line-height:1.15;
}
.fleet-card h4{
  color:#c9a44d;
  font-size:20px;
  margin:0 0 16px;
  font-weight:600;
}
.fleet-card .capacity{
  color:#fff;
  font-weight:800;
  font-size:18px;
  margin:0 0 16px;
}
.fleet-card ul{
  padding:0;
  margin:0 0 24px;
  list-style:none;
}
.fleet-card li{
  color:#d5d5d5;
  font-size:16px;
  line-height:1.55;
  margin:8px 0;
}
.fleet-card li::before{
  content:"✓";
  color:#c9a44d;
  font-weight:900;
  margin-right:10px;
}
.car-whatsapp{
  display:block;
  text-align:center;
  background:#c9a44d;
  color:#000;
  text-decoration:none;
  font-weight:900;
  padding:15px 20px;
  border-radius:16px;
}
@media(max-width:768px){
  .fleet-section{
    padding:60px 18px;
  }
  .fleet-section > h2{
    font-size:36px;
  }
  .fleet-intro{
    font-size:18px;
  }
  .fleet-grid{
    grid-template-columns:1fr;
  }
  .fleet-card img{
    height:auto;
    max-height:none;
    object-fit:contain;
    background:#000;
  }
  .fleet-card h3{
    font-size:25px;
  }
}


/* Menu child item under Our Cars */
.mobile-menu .submenu-link{
  padding-left:34px;
  color:#f1d27a;
  font-size:17px;
  border-bottom:1px solid rgba(201,164,77,.18);
}

/* Premium Range Rover Section */
.premium-cars-home{
  display:none !important;
}

.premium-fleet-section{
  padding:85px 28px;
  background:
    radial-gradient(circle at top right, rgba(201,164,77,.18), transparent 34%),
    linear-gradient(145deg,#000,#080808 55%,#000);
  border-top:1px solid rgba(201,164,77,.35);
  border-bottom:1px solid rgba(201,164,77,.35);
}

.premium-fleet-section > .eyebrow{
  display:block;
  max-width:1180px;
  margin:0 auto 12px;
  color:#c9a44d;
  text-transform:uppercase;
  letter-spacing:9px;
  font-weight:900;
  text-align:center;
}

.premium-fleet-section > h2{
  max-width:1180px;
  margin:0 auto 16px;
  color:#fff;
  text-align:center;
  font-size:52px;
  line-height:1.05;
}

.premium-fleet-intro{
  max-width:860px;
  margin:0 auto 38px;
  color:#d7d7d7;
  font-size:20px;
  line-height:1.65;
  text-align:center;
}

.premium-range-card{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:0;
  border:1px solid rgba(201,164,77,.72);
  border-radius:34px;
  overflow:hidden;
  background:linear-gradient(145deg,#070707,#111);
  box-shadow:0 35px 100px rgba(0,0,0,.75), 0 0 55px rgba(201,164,77,.12);
}

.premium-range-image img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  display:block;
}

.premium-range-body{
  padding:44px 38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    radial-gradient(circle at top right, rgba(201,164,77,.16), transparent 35%),
    #0b0b0b;
}

.premium-label{
  display:inline-block;
  width:max-content;
  color:#000;
  background:#c9a44d;
  border-radius:999px;
  padding:8px 16px;
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.premium-range-body h3{
  font-size:48px;
  color:#fff;
  line-height:1.05;
  margin:0 0 10px;
}

.premium-range-body h4{
  font-size:24px;
  color:#c9a44d;
  margin:0 0 20px;
}

.premium-range-body .capacity{
  color:#fff;
  font-size:20px;
  font-weight:900;
  margin:0 0 22px;
}

.premium-range-body ul{
  list-style:none;
  margin:0 0 30px;
  padding:0;
}

.premium-range-body li{
  color:#e0e0e0;
  font-size:18px;
  line-height:1.55;
  margin:11px 0;
}

.premium-range-body li::before{
  content:"✓";
  color:#c9a44d;
  font-weight:900;
  margin-right:12px;
}

.premium-whatsapp{
  font-size:17px;
  padding:17px 22px;
  border-radius:18px;
}

@media(max-width:768px){
  .premium-fleet-section{
    padding:60px 18px;
  }
  .premium-fleet-section > h2{
    font-size:36px;
  }
  .premium-fleet-intro{
    font-size:18px;
  }
  .premium-range-card{
    grid-template-columns:1fr;
    border-radius:28px;
  }
  .premium-range-image img{
    min-height:auto;
    height:auto;
  }
  .premium-range-body{
    padding:32px 24px;
  }
  .premium-range-body h3{
    font-size:36px;
  }
  .premium-range-body h4{
    font-size:22px;
  }
  .premium-range-body li{
    font-size:17px;
  }
}


/* Vehicle image crop update: show only car exterior + interior photos */
.fleet-card img{
  height:360px !important;
  object-fit:cover !important;
  object-position:center center !important;
  background:#000;
}

@media(max-width:768px){
  .fleet-card img{
    height:auto !important;
    object-fit:contain !important;
  }
}


/* Airport Transfer Gallery */
.service-link{
  text-decoration:none;
}

.airport-transfer-section{
  padding:80px 28px;
  background:
    radial-gradient(circle at top left, rgba(201,164,77,.14), transparent 34%),
    linear-gradient(145deg,#000,#080808 60%,#000);
  border-top:1px solid rgba(201,164,77,.35);
  border-bottom:1px solid rgba(201,164,77,.35);
  text-align:center;
}

.airport-transfer-section .eyebrow{
  color:#c9a44d;
  text-transform:uppercase;
  letter-spacing:8px;
  font-weight:900;
}

.airport-transfer-section h2{
  color:#fff;
  font-size:48px;
  line-height:1.08;
  margin:18px auto;
  max-width:980px;
}

.airport-intro{
  max-width:820px;
  margin:0 auto 34px;
  color:#d7d7d7;
  font-size:20px;
  line-height:1.65;
}

.airport-gallery{
  max-width:1180px;
  margin:0 auto 34px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.airport-gallery img{
  width:100%;
  height:430px;
  object-fit:cover;
  border-radius:28px;
  border:1px solid rgba(201,164,77,.65);
  box-shadow:0 25px 80px rgba(0,0,0,.65), 0 0 35px rgba(201,164,77,.10);
  background:#000;
}

.airport-whatsapp{
  display:inline-block;
  background:#c9a44d;
  color:#000;
  text-decoration:none;
  font-weight:900;
  padding:17px 34px;
  border-radius:18px;
  box-shadow:0 14px 45px rgba(201,164,77,.22);
}

@media(max-width:768px){
  .airport-transfer-section{
    padding:60px 18px;
  }
  .airport-transfer-section h2{
    font-size:36px;
  }
  .airport-intro{
    font-size:18px;
  }
  .airport-gallery{
    grid-template-columns:1fr;
    gap:18px;
  }
  .airport-gallery img{
    height:auto;
    max-height:none;
    object-fit:contain;
  }
}


/* Baku City Tour Gallery */
.baku-city-tour-section{
  padding:80px 28px;
  background:
    radial-gradient(circle at top right, rgba(201,164,77,.14), transparent 34%),
    linear-gradient(145deg,#000,#080808 60%,#000);
  border-top:1px solid rgba(201,164,77,.35);
  border-bottom:1px solid rgba(201,164,77,.35);
  text-align:center;
}
.baku-city-tour-section .eyebrow{
  color:#c9a44d;
  text-transform:uppercase;
  letter-spacing:8px;
  font-weight:900;
}
.baku-city-tour-section h2{
  color:#fff;
  font-size:48px;
  line-height:1.08;
  margin:18px auto;
  max-width:980px;
}
.city-tour-intro{
  max-width:820px;
  margin:0 auto 34px;
  color:#d7d7d7;
  font-size:20px;
  line-height:1.65;
}
.city-tour-gallery{
  max-width:1180px;
  margin:0 auto 34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.city-tour-gallery img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:26px;
  border:1px solid rgba(201,164,77,.65);
  box-shadow:0 25px 80px rgba(0,0,0,.65), 0 0 35px rgba(201,164,77,.10);
  background:#000;
}
.city-tour-whatsapp{
  display:inline-block;
  background:#c9a44d;
  color:#000;
  text-decoration:none;
  font-weight:900;
  padding:17px 34px;
  border-radius:18px;
  box-shadow:0 14px 45px rgba(201,164,77,.22);
}
@media(max-width:768px){
  .baku-city-tour-section{
    padding:60px 18px;
  }
  .baku-city-tour-section h2{
    font-size:36px;
  }
  .city-tour-intro{
    font-size:18px;
  }
  .city-tour-gallery{
    grid-template-columns:1fr;
    gap:18px;
  }
  .city-tour-gallery img{
    height:auto;
    max-height:none;
    object-fit:contain;
  }
}


/* Language selector */
.language-select{
  background:#0b0b0b;
  color:#c9a44d;
  border:1px solid rgba(201,164,77,.8);
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
  outline:none;
}

/* Premium Baku City Tour gallery */
.tour-gallery-section{
  padding:80px 28px;
  background:
    radial-gradient(circle at top right, rgba(201,164,77,.14), transparent 34%),
    linear-gradient(145deg,#000,#080808 60%,#000);
  border-top:1px solid rgba(201,164,77,.35);
  border-bottom:1px solid rgba(201,164,77,.35);
  text-align:center;
}
.tour-gallery-section .eyebrow{
  color:#c9a44d;
  text-transform:uppercase;
  letter-spacing:8px;
  font-weight:900;
}
.tour-gallery-section h2{
  color:#fff;
  font-size:48px;
  line-height:1.08;
  margin:18px auto;
  max-width:980px;
}
.tour-intro{
  max-width:820px;
  margin:0 auto 34px;
  color:#d7d7d7;
  font-size:20px;
  line-height:1.65;
}
.tour-gallery{
  max-width:1180px;
  margin:0 auto 34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.tour-gallery img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:26px;
  border:1px solid rgba(201,164,77,.65);
  box-shadow:0 25px 80px rgba(0,0,0,.65), 0 0 35px rgba(201,164,77,.10);
  background:#000;
}
.tour-whatsapp{
  display:inline-block;
  background:#c9a44d;
  color:#000;
  text-decoration:none;
  font-weight:900;
  padding:17px 34px;
  border-radius:18px;
  box-shadow:0 14px 45px rgba(201,164,77,.22);
}
html[dir="rtl"] body{
  direction:rtl;
}
html[dir="rtl"] .logo-wrap,
html[dir="rtl"] .header-actions{
  direction:ltr;
}
@media(max-width:768px){
  .language-select{ padding:9px 8px; }
  .tour-gallery-section{ padding:60px 18px; }
  .tour-gallery-section h2{ font-size:36px; }
  .tour-intro{ font-size:18px; }
  .tour-gallery{
    grid-template-columns:1fr;
    gap:18px;
  }
  .tour-gallery img{
    height:auto;
    max-height:none;
    object-fit:contain;
  }
}


.airport-cars-grid{
 display:grid;
 grid-template-columns:repeat(2,1fr);
 gap:24px;
 max-width:1200px;
 margin:40px auto;
}
.airport-car-card{
 background:#0a0a0a;
 border:1px solid rgba(201,164,77,.35);
 border-radius:24px;
 overflow:hidden;
 box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.airport-car-card img{
 width:100%;
 height:320px;
 object-fit:cover;
}
.airport-car-body{
 padding:24px;
}
.airport-car-body h3{
 color:#fff;
 font-size:28px;
 margin:0 0 8px;
}
.airport-car-body h4{
 color:#c9a44d;
 margin:0 0 14px;
}
.airport-car-body .capacity,
.airport-car-body li{
 color:#ddd;
}
@media(max-width:768px){
 .airport-cars-grid{
   grid-template-columns:1fr;
 }
}


.airport-car-card{
    display:flex;
    flex-direction:column;
    min-height:760px;
}

.airport-car-card img{
    width:100%;
    height:auto !important;
    max-height:none !important;
    object-fit:contain !important;
    background:#111;
    padding:8px;
}

.airport-car-body{
    margin-top:auto;
    padding-top:12px !important;
}

.airport-car-body h3{
    margin-top:10px !important;
}

.airport-car-body ul{
    margin-top:10px;
}


/* Final tour gallery fixes */
.tour-intro{max-width:900px;margin:0 auto 22px;color:#ddd;line-height:1.7;text-align:center;font-size:16px;}
.tour-gallery img{display:block;width:100%;height:auto;object-fit:cover;}
.tour-whatsapp{display:inline-block;margin-top:22px;padding:12px 22px;border-radius:999px;background:#d4af37;color:#111;font-weight:800;text-decoration:none;}


/* Premium Honeymoon Package */
.honeymoon-package-section{
  padding:90px 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,.22), transparent 38%),
    linear-gradient(135deg, #090806 0%, #17140d 45%, #050505 100%);
}
.honeymoon-premium-card{
  max-width:980px;
  margin:0 auto;
  padding:62px 56px;
  border:1px solid rgba(212,175,55,.52);
  border-radius:36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    radial-gradient(circle at 50% 12%, rgba(212,175,55,.18), transparent 48%);
  box-shadow:0 30px 90px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.035);
  position:relative;
  overflow:hidden;
  text-align:center;
}
.honeymoon-premium-card:before{
  content:"";
  position:absolute;
  inset:20px;
  border:1px solid rgba(212,175,55,.25);
  border-radius:28px;
  pointer-events:none;
}
.honeymoon-premium-card:after{
  content:"";
  position:absolute;
  width:260px;
  height:1px;
  left:50%;
  top:84px;
  transform:translateX(-50%);
  background:linear-gradient(90deg, transparent, rgba(212,175,55,.9), transparent);
}
.honeymoon-premium-card h2{
  font-size:clamp(46px, 7vw, 84px);
  line-height:1.02;
  margin:22px auto 22px;
  color:#fff;
  letter-spacing:-2px;
  text-shadow:0 8px 28px rgba(0,0,0,.5);
}
.honeymoon-premium-card .eyebrow{
  color:#d4af37;
  letter-spacing:12px;
  font-weight:800;
}
.honeymoon-lead{
  max-width:720px;
  font-size:clamp(18px, 2.2vw, 28px);
  color:#f4f1e8;
}
.honeymoon-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:42px auto 34px;
  max-width:800px;
}
.honeymoon-pill{
  border:1px solid rgba(212,175,55,.55);
  border-radius:999px;
  padding:18px 22px;
  color:#fff;
  font-weight:900;
  font-size:20px;
  background:rgba(0,0,0,.22);
}
.honeymoon-route-box{
  max-width:760px;
  margin:42px auto 0;
  padding:34px;
  border-radius:30px;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.08);
}
.honeymoon-route-box h3{
  color:#d4af37;
  font-size:clamp(30px,4vw,48px);
  margin:0 0 24px;
}
.honeymoon-route-grid{
  display:grid;
  gap:16px;
}
.honeymoon-route-item{
  padding:18px 22px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:850;
  font-size:22px;
}
.honeymoon-cta{
  margin-top:36px;
  box-shadow:0 0 34px rgba(212,175,55,.35);
}
body.rtl .honeymoon-premium-card{direction:rtl;}
@media(max-width:768px){
  .honeymoon-package-section{padding:56px 12px;}
  .honeymoon-premium-card{padding:48px 18px;border-radius:28px;}
  .honeymoon-premium-card .eyebrow{letter-spacing:7px;font-size:12px;}
  .honeymoon-highlights{grid-template-columns:1fr;gap:14px;}
  .honeymoon-pill{font-size:18px;padding:15px;}
  .honeymoon-route-box{padding:24px 16px;}
  .honeymoon-route-item{font-size:19px;}
}


/* Brand title full visibility fix */
.logo-wrap > div{
  min-width:0;
}
.logo-wrap h1{
  white-space:nowrap;
  overflow:visible;
  text-overflow:clip;
  font-size:clamp(28px, 2.4vw, 38px);
  line-height:1.05;
  letter-spacing:-0.6px;
  font-weight:900;
}
@media(max-width:768px){
  header{
    padding:12px 8px;
    gap:6px;
  }
  .logo-wrap{
    gap:8px;
    flex:1 1 auto;
  }
  .logo{
    width:50px;
    height:50px;
  }
  .logo-wrap h1{
    font-size:clamp(19px, 5vw, 23px);
    white-space:nowrap;
    letter-spacing:-0.8px;
  }
  header p{
    font-size:12px;
    white-space:nowrap;
  }
  .header-actions{
    gap:6px;
  }
  .language-select{
    min-width:48px;
    height:38px;
    padding:0 6px;
    font-size:13px;
  }
  .menu-btn{
    width:40px;
    height:40px;
    font-size:24px;
    border-radius:10px;
  }
}
@media(max-width:380px){
  .logo{width:44px;height:44px;}
  .logo-wrap h1{font-size:18px;letter-spacing:-1px;}
  header p{font-size:11px;}
  .language-select{min-width:44px;font-size:12px;}
  .menu-btn{width:38px;height:38px;}
}
