/* =========================================================
   VOYAGE CAR RENTALS — CUSTOM STYLES
   ========================================================= */

:root {
  --voyage-dark: #0e2a26;
  --voyage-dark-2: #123330;
  --voyage-gold: #c9974f;
  --voyage-gold-light: #d9ac6b;
  --voyage-cream: #faf7f1;
  --voyage-cream-2: #f2ede4;
  --voyage-text: #2b2b28;
  --voyage-text-light: #6b6a63;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--voyage-text);
  background-color: var(--voyage-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  margin: 0;
}

p { margin: 0; }

a { text-decoration: none; }

img { display: block; max-width: 100%; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color:#F0C67A;
  /* text-shadow:0 1px 6px rgba(0,0,0,.25); */
  margin-bottom: .85rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--voyage-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title-light {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.section-text {
  color: var(--voyage-text-light);
  font-size: .98rem;
  line-height: 1.75;
  max-width: 46rem;
}

/* Buttons */
.btn-voyage-gold {
  background-color: var(--voyage-gold);
  color: #fff;
  border-radius: 50px;
  padding: .65rem 1.5rem;
  font-weight: 500;
  font-size: .92rem;
  border: none;
  transition: all .25s ease;
}
.btn-voyage-gold:hover { background-color: var(--voyage-gold-light); color: #fff; }

.btn-voyage-dark {
  background-color: var(--voyage-dark);
  color: #fff;
  border-radius: 50px;
  padding: .7rem 1.6rem;
  font-weight: 500;
  font-size: .92rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s ease;
}
.btn-voyage-dark:hover { background-color: var(--voyage-dark-2); color: var(--voyage-gold-light); }

.btn-voyage-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 50px;
  padding: .65rem 1.6rem;
  font-weight: 500;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s ease;
}
.btn-voyage-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* =========================================================
   NAVBAR
   ========================================================= */
.voyage-navbar {
  background-color: rgba(250, 247, 241, .97);
  padding: .9rem 0;
  box-shadow: 0 2px 18px rgba(0,0,0,.05);
}

.voyage-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--voyage-dark);
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo-text small {
  font-family: var(--font-sans);
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--voyage-gold);
  margin-top: 2px;
}
.voyage-footer .logo-text { color: #fff; }

.navbar-nav .nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--voyage-text);
  margin: 0 .7rem;
  position: relative;
  padding-bottom: 4px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--voyage-gold);
}
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--voyage-gold);
  border-radius: 2px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position:right center;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(30,95,55,.65) 0%,
    rgba(30,95,55,.48) 30%,
    rgba(30,95,55,.12) 55%,
    rgba(20,30,25,.05) 100%
  );
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  color:#fff;
  line-height: 1.08;
}

.hero-title-italic {
  font-style: italic;
  font-weight: 500;
  color:#F8E7C2;
}

.hero-sub {
  font-size: 1.05rem;
  color:rgba(255,255,255,.88);
  margin-top: 1.3rem;
  line-height: 1.7;
}

.hero-features { max-width: 640px; }

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
}
.hero-feature i {
  font-size: 1.6rem;
  color: var(--voyage-gold);
}
.hero-feature span {
  font-size: .8rem;
  font-weight: 500;
  color:#fff;
  line-height: 1.3;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  min-height: 320px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.stat-item i {
  color: var(--voyage-gold);
  font-size: 1.3rem;
  margin-bottom: .4rem;
  display: block;
}
.stat-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--voyage-dark);
}
.stat-item span {
  font-size: .75rem;
  color: var(--voyage-text-light);
  display: block;
}

.about-highlight-box {
  background-color: var(--voyage-dark);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  color: #fff;
}
.about-highlight-box hr {
  border-color: rgba(255,255,255,.12);
  margin: 1rem 0;
}
.highlight-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.highlight-item i {
  font-size: 1.3rem;
  color: var(--voyage-gold);
  margin-top: 3px;
}
.highlight-item h4 {
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .3rem;
  font-family: var(--font-sans);
}
.highlight-item p {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* =========================================================
   FLEET
   ========================================================= */
.fleet-section { background-color: var(--voyage-cream-2); }

.fleet-arrows { margin-bottom: .5rem; }
.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--voyage-gold);
  background: transparent;
  color: var(--voyage-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.arrow-btn:hover { background: var(--voyage-gold); color: #fff; }

.fleet-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 24px rgba(20,30,25,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(20,30,25,.1);
}

.fleet-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.4s;
}

.fleet-card:hover img{
    transform:scale(1.05);
}

.fleet-card-body { padding: 1.3rem 1.4rem 1.5rem; }
.fleet-card-body h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--voyage-dark);
  margin-bottom: .3rem;
}
.fleet-card-body p {
  font-size: .82rem;
  color: var(--voyage-text-light);
  margin-bottom: .9rem;
}
.fleet-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--voyage-dark);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s ease, gap .2s ease;
}
.fleet-link:hover { color: var(--voyage-gold); gap: .6rem; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section {
  background-color: var(--voyage-dark);
  background-image: linear-gradient(180deg, var(--voyage-dark) 0%, var(--voyage-dark-2) 100%);
}
.why-section .eyebrow { justify-content: center; }

.why-item i {
  font-size: 2.1rem;
  color: var(--voyage-gold);
  margin-bottom: .9rem;
  display: inline-block;
}
.why-item h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .55rem;
  font-family: var(--font-sans);
}
.why-item p {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  line-height: 1.55;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
  background: #fff;
  border: 1px solid #ece7dc;
  border-radius: 14px;
  padding: 2rem 1.8rem;
  height: 100%;
  position: relative;
}
.quote-icon {
  font-size: 1.8rem;
  color: var(--voyage-gold);
  margin-bottom: .6rem;
  display: inline-block;
}
.testimonial-card p {
  font-size: .92rem;
  color: var(--voyage-text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  min-height: 84px;
}
.stars { color: var(--voyage-gold); font-size: .8rem; margin-bottom: 1.2rem; }
.stars i { margin-right: 2px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h6 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--voyage-dark);
  font-family: var(--font-sans);
}
.testimonial-author span {
  font-size: .75rem;
  color: var(--voyage-text-light);
}

.testimonial-dots { display: flex; justify-content: center; gap: .5rem; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd6c7;
  display: inline-block;
  cursor: pointer;
  transition: background .2s ease;
}
.dot.active { background: var(--voyage-gold); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 3.2rem 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,42,38,.96) 0%, rgba(14,42,38,.9) 55%, rgba(14,42,38,.55) 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  margin-bottom: .6rem;
}
.cta-content p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.voyage-footer {
  background-color: var(--voyage-dark);
  color: rgba(255,255,255,.75);
}
.footer-about {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 260px;
}
.footer-heading {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: .65rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--voyage-gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-contact i { color: var(--voyage-gold); margin-top: 3px; }

.social-icons { display: flex; gap: .6rem; }
.social-icons a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  transition: all .2s ease;
}
.social-icons a:hover { background: var(--voyage-gold); border-color: var(--voyage-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--voyage-gold); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding-top: 130px; padding-bottom: 50px; }
  
  .navbar-nav .nav-link { margin: .3rem 0; }
  .navbar-collapse { background: var(--voyage-cream); padding: 1rem; border-radius: 10px; margin-top: .5rem; }
  .about-img-wrap { min-height: 240px; }
  .cta-content .row > div:last-child { justify-content: flex-start !important; margin-top: .5rem; }
}

@media (max-width:767.98px){

/*==========================
Navbar
==========================*/

.voyage-navbar{
    padding:12px 0;
}

.voyage-logo img{
    width:70px !important;
}

/*==========================
Hero
==========================*/

.hero-section{

    min-height:auto;

    padding-top:110px;

    padding-bottom:40px;

    background-position:70% center;

}

.hero-overlay { background:linear-gradient(
        180deg,
        rgba(30,95,55,.82) 0%,
        rgba(30,95,55,.60) 45%,
        rgba(30,95,55,.30) 100%
    );
 }

.hero-content{

    text-align:left;

}

.hero-title{

    font-size:2.6rem;
    line-height:1.08;
    color:#fff;

}

.hero-title-italic{

    display:inline;
    color:#F8E7C2;

}

.hero-sub{

    font-size:1rem;

    margin-top:12px;

    margin-bottom:30px;
    color:rgba(255,255,255,.90);
    max-width:320px;

}

/*==========================
Features
==========================*/

.hero-features{

    margin-top:0 !important;

}

.hero-feature{

    align-items:center;
    text-align:center;
    gap:10px;
}

.hero-feature i{

    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(201,151,79,.12);
    color:var(--voyage-gold);
    font-size:24px;
}

.hero-feature span{

    font-size:.82rem;
    line-height:1.45;
    max-width:120px;
    margin:auto;
    color:#fff;
}

/*==========================
Other Sections
==========================*/

.section-title,
.section-title-light{

    text-align:center;

}

.stats-row{

    text-align:center;

}

.fleet-card img{

    height:180px;

}

}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}




/*==========================================================
ABOUT PAGE HERO
==========================================================*/

.page-hero{
    position:relative;
    padding:170px 0 100px;
    background:url('../images/hero.png') center center/cover no-repeat;
    overflow:hidden;
}

.page-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(14,42,38,.75),rgba(14,42,38,.75));
}

.page-hero .container{
    position:relative;
    z-index:2;
}

.page-hero .hero-title{
    color:#fff;
}

.page-hero .hero-sub{
    color:rgba(255,255,255,.85);
    max-width:650px;
}

.breadcrumb-nav{
    display:flex;
    justify-content:center;
    gap:10px;
    font-size:.9rem;
}

.breadcrumb-nav a{
    color:#fff;
    transition:.3s;
}

.breadcrumb-nav span{
    color:rgba(255,255,255,.75);
}

.breadcrumb-nav a:hover{
    color:var(--voyage-gold);
}

@media(max-width:768px){

.page-hero{
    padding:140px 0 70px;
}

}

/*==========================================================
SERVICE CARD
==========================================================*/

.service-card{

    background:#fff;

    border-radius:14px;

    padding:35px 25px;

    height:100%;

    text-align:center;

    box-shadow:0 6px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.service-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:var(--voyage-cream);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.service-icon i{

    font-size:30px;

    color:var(--voyage-gold);

}

.service-card h5{

    color:var(--voyage-dark);

    margin-bottom:15px;

}

.service-card p{

    color:var(--voyage-text-light);

    line-height:1.8;

    font-size:.92rem;

}

/* Fleet Page */

.fleet-page-card{
    overflow:hidden;
}

.fleet-specs{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:12px;

    margin-top:20px;

    padding-top:20px;

    border-top:1px solid #ece7dc;

}

.fleet-specs span{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:.88rem;

    color:var(--voyage-text);

}

.fleet-specs i{

    color:var(--voyage-gold);

    font-size:1rem;

}

.fleet-page-card .btn{

    justify-content:center;

}

/*==========================================================
CONTACT PAGE
==========================================================*/

.contact-card{

    background:#fff;

    border-radius:14px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    box-shadow:0 6px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-icon{

    width:75px;

    height:75px;

    margin:auto auto 25px;

    border-radius:50%;

    background:var(--voyage-cream);

    display:flex;

    align-items:center;

    justify-content:center;

}

.contact-icon i{

    font-size:30px;

    color:var(--voyage-gold);

}

.contact-card h5{

    color:var(--voyage-dark);

    margin-bottom:20px;

}

.contact-card a{

    display:block;

    color:var(--voyage-text-light);

    margin-bottom:10px;

    transition:.3s;

}

.contact-card a:hover{

    color:var(--voyage-gold);

}

.contact-card p{

    color:var(--voyage-text-light);

    line-height:1.8;

    margin:0;

}

.map-wrapper{

    overflow:hidden;

    border-radius:14px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.map-wrapper iframe{

    display:block;

}




/*==========================================================
SERVICES PAGE
==========================================================*/

/*==============================
Service Card
==============================*/

.service-card{
    background:#fff;
    border-radius:16px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
    border:1px solid rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.service-card i{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:var(--voyage-gold);
    background:var(--voyage-cream);
    border-radius:50%;
}

.service-card h5{
    color:var(--voyage-dark);
    margin-bottom:15px;
}

.service-card p{
    margin:0;
    color:var(--voyage-text-light);
    line-height:1.8;
}


/*==============================
Service Areas
==============================*/

.city-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.city-list span{
    padding:12px 24px;
    background:#fff;
    border-radius:50px;
    font-weight:500;
    color:var(--voyage-dark);
    border:1px solid rgba(0,0,0,.08);
    transition:.3s;
}

.city-list span:hover{
    background:var(--voyage-gold);
    color:#fff;
    transform:translateY(-3px);
}


/*==============================
Why Choose
==============================*/

.feature-box{
    background:#fff;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.feature-box i{
    font-size:36px;
    color:var(--voyage-gold);
    margin-bottom:18px;
    display:block;
}

.feature-box h6{
    margin:0;
    color:var(--voyage-dark);
    font-weight:600;
}


/*==============================
Booking Process
==============================*/

.process-card{
    background:#fff;
    border-radius:16px;
    padding:35px 25px;
    height:100%;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.process-card span{
    width:65px;
    height:65px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--voyage-gold);
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.process-card h5{
    color:var(--voyage-dark);
    margin-bottom:15px;
}

.process-card p{
    margin:0;
    color:var(--voyage-text-light);
    line-height:1.8;
}


/*==============================
Responsive
==============================*/

@media (max-width:991px){

    .service-card,
    .feature-box,
    .process-card{
        padding:30px 22px;
    }

}

@media (max-width:767px){

    .city-list{
        gap:10px;
    }

    .city-list span{
        width:100%;
        text-align:center;
    }

}


/*====================================
Floating WhatsApp Button
====================================*/

.floating-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 12px 30px rgba(0,0,0,.20);
    transition:all .3s ease;
    animation:whatsappPulse 2s infinite;
}

.floating-whatsapp:hover{
    background:#1ebe5d;
    color:#fff;
    transform:translateY(-5px) scale(1.08);
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.45);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:767px){

    .floating-whatsapp{

        width:55px;
        height:55px;
        font-size:28px;
        right:18px;
        bottom:18px;

    }

}