/* =========================================================
   PERO TRAVEL - custom theme layer
   Load AFTER main.css. Re-themes the existing template 
   ========================================================= */

:root{
  --pt-black:        #0b0b0c;
  --pt-black-2:       #141416;
  --pt-black-3:       #1c1c1f;
  --pt-white:         #ffffff;
  --pt-grey:          #9c9c9f;
  --pt-grey-line:     rgba(255,255,255,.10);
  --pt-red:           #e4132b;
  --pt-red-dark:      #a80d20;
  --pt-red-soft:      rgba(228,19,43,.12);

  /* re-point the variables to the new palette */
  --tp-theme-primary: var(--pt-red);
  --tp-theme-primary-lighter: #ff4a5a;
  --tp-theme-secondary: var(--pt-red);
  --tp-common-black: var(--pt-white);
  --tp-common-white: var(--pt-white);
  --tp-heading-primary: #ffffff;
  --tp-text-body: #cfcfd2;
  --tp-text-2: #b7b7bb;
  --tp-text-3: #cfcfd2;
  --tp-border-2: var(--pt-grey-line);
  --tp-border-3: var(--pt-grey-line);
}

html, body{ background: var(--pt-black); }

body{
  color: var(--pt-text-body);
}

h1,h2,h3,h4,h5,h6{ color:#fff; letter-spacing:-0.01em; }

a{ color: inherit; }

::selection{ background: var(--pt-red); color:#fff; }

/* ---------- generic section surfaces (override template bg utilities) --- */
.theme-bg,.theme-bg-2,.theme-bg-3,.theme-bg-4,.theme-bg-5,.theme-bg-7,.theme-bg-8,
.white-bg,.white-bg-2, .grey-bg,.grey-bg-2,.grey-bg-3{
  background: var(--pt-black) !important;
}
.pt-panel{ background: var(--pt-black-2); }
.pt-hairline-top{ border-top:1px solid var(--pt-grey-line); }
.pt-hairline-bottom{ border-bottom:1px solid var(--pt-grey-line); }

.intro p, .intro{ color: var(--tp-text-3); }

/* ---------- eyebrow / section labels ---------- */
.pt-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--pt-red);
  margin-bottom:16px;
}
.pt-eyebrow::before{
  content:"";
  width:22px;
  height:2px;
  background: var(--pt-red);
  display:inline-block;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.tp-header__topbar{
  background: var(--pt-black-2) !important;
  border:0;
}
.tp-header__cta a{ color:#fff; }
.tp-header__cta a i{ color: var(--pt-red); margin-right:6px !important; }
.tp-header__cta a:hover{ color: var(--pt-red); opacity:1; }
.tp-header__social a{ color:#fff; }
.tp-header__social a:hover{ color: var(--pt-red); }

.tp-header__main{ background: var(--pt-black); }
.header-sticky{ background: var(--pt-black) !important; box-shadow:0 10px 30px rgba(0,0,0,.45); }
.header-sticky.white-bg{ background: var(--pt-black) !important; }

.header-sticky .main-menu.black-menu ul li a:hover{ color: var(--pt-red); }

.main-menu.black-menu ul li a{ color:#fff; font-weight:700; letter-spacing:.02em; }
.main-menu.black-menu ul li:hover > a,
.main-menu.black-menu ul li:hover > a::after{ color: var(--pt-red); }
.main-menu ul li .submenu{ background: var(--pt-black-2); }
.main-menu ul li .submenu li a{ color:#fff; }
.main-menu ul li .submenu li:hover > a{ color: var(--pt-red); }

.tp-header__nav{ background: var(--pt-red); }
.tp-header__nav span{ background: #fff; }

.offcanvas__area{ background: var(--pt-black-2); }
.offcanvas__close-btn{ background: var(--pt-red); }
.offcanvas__cta-title{ color: var(--pt-red); }
.offcanvas__cta a:hover{ color: var(--pt-red); }
.mean-container .mean-nav ul li a{ color:#fff; border-top-color: var(--pt-grey-line); }
.mean-container .mean-nav ul li a:hover{ color: var(--pt-red); }

.tp-backtotop{ background: var(--pt-red); }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.pt-hero{
  position:relative;
  width:100%;
  height: clamp(460px, 58vw, 760px);
  overflow:hidden;
  background: var(--pt-black);
}
.pt-hero .swiper-container,
.pt-hero .swiper-wrapper{ height:100%; min-height:100%; }
.pt-hero .swiper-slide{
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
}
.pt-hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(11,11,12,.96) 0%, rgba(11,11,12,.65) 32%, rgba(11,11,12,.35) 55%, rgba(11,11,12,.55) 100%);
  z-index:2;
  pointer-events:none;
}
.pt-hero__content{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:3;
  padding: 0 0 70px;
  pointer-events: none;
}
.pt-hero__content .pt-hero__cta{
  pointer-events: auto;
}
.pt-hero__badge{
  width:64px; height:64px;
  border-radius:50%;
  margin-bottom:26px;
}
.pt-hero__badge img{ width:100%; height:100%; object-fit:contain; }

.pt-hero__title{
  font-weight:900;
  text-transform:uppercase;
  line-height:.92;
  letter-spacing:-.02em;
  font-size: clamp(46px, 8vw, 108px);
  color:#fff;
  margin-bottom:22px;
}
.pt-hero__title span{ color: var(--pt-red); }

.pt-hero__moto{
  font-size: clamp(18px, 2vw, 26px);
  font-weight:700;
  color:#fff;
  max-width:560px;
  margin-bottom:34px;
}

.pt-hero__cta{ display:flex; flex-wrap:wrap; gap:14px; }
.hide-on-mobile{ display:block; }
.hide-on-desktop{ display:none; }
.cta-mobile{ display:flex; flex-wrap:wrap; gap:14px; justify-content: center; }

.pt-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:54px;
  padding:0 26px;
  border-radius:2px;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  border:1.5px solid rgba(255,255,255,.35);
  color:#fff;
  background:transparent;
  transition: all .25s ease;
}

.pt-btn i{ font-size:16px; }
.pt-btn:hover{ border-color: var(--pt-red); background: var(--pt-red); color:#fff; }
.pt-btn:focus{ color:#fff; }

.pt-btn--solid{ background: var(--pt-red); border-color: var(--pt-red); }
.pt-btn--solid:hover{ background: var(--pt-red-dark); border-color: var(--pt-red-dark); }

.pt-btn--outline{ border-color: var(--pt-red); color:#fff; }
.pt-btn--outline:hover{ background: var(--pt-red); }

.pt-btn--whatsapp{ border-color:#25D366; }
.pt-btn--whatsapp:hover{ background:#25D366; border-color:#25D366; }

/* slider arrows / dots re-themed */
@media (hover: none){
  .pt-hero .button-prev, .pt-hero .button-next{ display: none; }
}
.pt-hero .button-prev, .pt-hero .button-next{ transition: all .25s }
.pt-hero .button-prev, .pt-hero .button-next{
  z-index:4; background: rgba(255,255,255,.08); backdrop-filter: blur(2px);
}
.pt-hero .button-prev::after, .pt-hero .button-next::after{ color:#fff; }
.pt-hero .button-prev:hover::after, .pt-hero .button-next:hover::after{ background: white; color: var(--pt-red); }
.pt-hero .pager-dots{ z-index:4; bottom:22px; }
.pt-hero .swiper-pagination-bullet{ background:#fff; opacity:1; }
.pt-hero .swiper-pagination-bullet-active{ opacity:1; background: var(--pt-red); }

@media (max-width:767px){
  .pt-hero, .pt-hero .swiper-container, .pt-hero .swiper-wrapper{
    height: clamp(320px, 95vw, 480px);
    min-height: clamp(320px, 95vw, 480px);
  }
  .pt-hero__content{ padding-bottom:24px; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.pt-about{ padding:110px 0 45px; }
.pt-about .intro p{ font-size:17px; line-height:1.8; }
.pt-about .intro strong{ color:#fff; }

/* =========================================================
   FEATURES ("What sets us apart")
   ========================================================= */
.pt-feats{ padding:90px 0; }
.pt-feat{
  display:flex;
  gap:22px;
  align-items:flex-start;
  padding:34px 0;
  border-top:1px solid var(--pt-grey-line);
}
.pt-feat:last-child{ border-bottom:1px solid var(--pt-grey-line); }
.pt-feat__icon{
  flex:0 0 auto;
  width:56px; height:56px;
  border-radius:50%;
  border:1.5px solid var(--pt-red);
  color: var(--pt-red);
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
}
.pt-feat__title{ font-size:22px; font-weight:800; text-transform:uppercase; margin-bottom:8px; letter-spacing:.01em; }
.pt-feat__text{ font-size:16px; line-height:1.75; max-width:640px; }

.tp-section__title,
.tp-section__title-lg{ color: var(--tp-common-black); }

/* =========================================================
   SPECIAL OFFER - "ticket" card
   ========================================================= */
.pt-offer{ padding: 100px 0 80px; }
.pt-offer__card{
  position:relative;
  display:flex;
  background: var(--pt-black-2);
  border:1px solid var(--pt-grey-line);
  border-radius:6px;
  overflow:hidden;
}
.pt-offer__stub{
  flex:0 0 190px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-right:2px dashed rgba(255,255,255,.18);
  padding:30px 10px;
}
.pt-offer__stub::before,
.pt-offer__stub::after{
  content:"";
  position:absolute;
  right:-16px;
  width:30px; height:30px;
  background: var(--pt-black);
  border-radius:50%;
}
.pt-offer__stub::before{ top:-16px; }
.pt-offer__stub::after{ bottom:-16px; }
.pt-offer__percent{
  font-size:46px;
  font-weight:900;
  color: var(--pt-red);
  line-height:1;
  margin-bottom:8px;
}
.pt-offer__stub-label{
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#fff;
}
.pt-offer__body{
  padding:38px 44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.pt-offer__title{
  font-size: clamp(24px, 3vw, 34px);
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:12px;
}
.pt-offer__text-block p{
  font-size:16px;
  max-width:520px;
  margin-bottom:24px;
}

@media (max-width:767px){
  .pt-offer__card{ flex-direction:column; }
  .pt-offer__stub{
    flex:0 0 auto;
    border-right:0;
    border-bottom:2px dashed rgba(255,255,255,.18);
    padding:24px;
  }
  .pt-offer__stub::before,.pt-offer__stub::after{ right:auto; }
  .pt-offer__stub::before{ top:auto; bottom:-16px; left:20%; }
  .pt-offer__stub::after{ top:auto; bottom:-16px; right:20%; }
  .pt-offer__body{ padding:30px 24px; }
}

/* =========================================================
   TAILOR-MADE
   ========================================================= */
.pt-bespoke{ padding:0px 0 90px; }
.pt-bespoke__wrap{
  display:flex;
  align-items:center;
  gap:50px;
  padding:50px;
  border:1px solid var(--pt-grey-line);
  border-radius:6px;
  background: linear-gradient(135deg, var(--pt-black-2) 0%, var(--pt-black) 100%);
}
.pt-bespoke__icon{
  flex:0 0 auto;
  width:120px; height:120px;
  border-radius:50%;
  border:1.5px dashed var(--pt-red);
  display:flex; align-items:center; justify-content:center;
}
.pt-bespoke__icon svg{ width:56px; height:56px; }
.pt-bespoke__title{ font-size: clamp(24px,3vw,32px); font-weight:800; text-transform:uppercase; margin-bottom:14px; }
.pt-bespoke__text p{ font-size:16px; max-width:640px; margin-bottom:24px; }

@media (max-width:767px){
  .pt-bespoke__wrap{ flex-direction:column; text-align:center; padding:34px 24px; }
}

/* =========================================================
   CAR GALLERY
   ========================================================= */
.pt-fleet{ padding:20px 0 100px; }
.cars{ display:flex; align-items:center; flex-wrap:wrap; gap:0; justify-content: center;}
.cars img{
  width: 100%;
  height:auto;
  filter: grayscale(45%) brightness(.85);
  transition: filter .3s ease, transform .3s ease;
}
.cars img:hover{ filter:none; transform:scale(1.02); }
.cars a {
    display: inline-block;
    width:33%;
}


/* =========================================================
   CONTACT
   ========================================================= */
.pt-contact{ padding:100px 0; background: var(--pt-black-2) !important; }
.pt-contact .tp-contact__box{
  background: var(--pt-black);
  border:1px solid var(--pt-grey-line);
  box-shadow:none;
  transform:none;
}
.pt-contact .tp-contact__icon{ color: var(--pt-red); }
.pt-contact .tp-contact__title{ color:#fff; }
.pt-contact .tp-contact__info span{ color: var(--pt-grey); }
.pt-contact .tp-contact__info span a:hover{ color: var(--pt-red); }

.contact_input{
  background: var(--pt-black) !important;
  border:2px solid var(--pt-grey-line) !important;
  color:#fff !important;
}
.contact_input::placeholder{ color: var(--pt-grey) !important; }
.contact_input:focus{ border-color: var(--pt-red) !important; }

.recaptcha{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.recaptcha p{ margin:0; flex:1 1 200px; }
#contact_captcha_img{
  flex:0 0 auto;
  background:#fff;
  border-radius:4px;
  padding:3px;
  display:block;
}
.mail-info p{ color: var(--pt-grey); font-size:13px; }
.tp-contact__info-area .tp-btn{ background: var(--pt-red); }
.tp-contact__info-area .tp-btn:hover{ background: var(--pt-red-dark); }

#contact_response { color: #25D366; }
#contact_response.error{ color: var(--pt-red); }

/* =========================================================
   FOOTER
   ========================================================= */
footer{ background: var(--pt-black) !important; }
.footer-bg, .footer-bg-2{ background: var(--pt-black) !important; }
.tp-footer__copyright span a{ color: var(--pt-red); }

/* =========================================================
   FLOATING QUICK-CONTACT BUTTON (FAB)
   ========================================================= */
.pt-fab{
  position:fixed;
  right:26px;
  bottom:26px;
  z-index:9997;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.pt-fab__options{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.pt-fab__opt{
  width:50px; height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--pt-black-2);
  border:1.5px solid var(--pt-grey-line);
  color:#fff;
  font-size:19px;
  box-shadow:0 10px 24px rgba(0,0,0,.45);
  opacity:0;
  transform: translateY(14px) scale(.85);
  pointer-events:none;
  transition: opacity .22s ease, transform .22s ease, background .2s ease, border-color .2s ease;
}
.pt-fab__opt:hover{ background: var(--pt-red); border-color: var(--pt-red); }
.pt-fab__opt[aria-label="WhatsApp"]:hover{ background:#25D366; border-color:#25D366; }

.pt-fab.is-open .pt-fab__opt{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.pt-fab.is-open .pt-fab__opt:nth-child(3){ transition-delay:.02s; }
.pt-fab.is-open .pt-fab__opt:nth-child(2){ transition-delay:.06s; }
.pt-fab.is-open .pt-fab__opt:nth-child(1){ transition-delay:.10s; }

.pt-fab__toggle{
  width:60px; height:60px;
  border-radius:50%;
  background: var(--pt-red);
  color:#fff;
  border:0;
  font-size:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 28px rgba(228,19,43,.45);
  cursor:pointer;
  transition: transform .25s ease, background .2s ease;
}
.pt-fab__toggle:hover{ background: var(--pt-red-dark); }
.pt-fab.is-open .pt-fab__toggle{ transform: rotate(135deg); }

@media (max-width:575px){
  .pt-fab{ right:16px; bottom:16px; }
}

/* =========================================================
   ANCHOR SCROLL OFFSET
   ========================================================= */
html{ scroll-behavior:smooth; }

#about, #feats, #offer, #bespoke, #contact{
  scroll-margin-top:150px;
}
@media (max-width:991px){
  #about, #feats, #offer, #bespoke, #contact{ scroll-margin-top:100px; }
}
@media (max-width:767px){
  #about, #feats, #offer, #bespoke, #contact{ scroll-margin-top:80px; }
}

/* =========================================================
   RESPONSIVE  - tablet & mobile
   ========================================================= */

/* ---- large tablet / small desktop (≤1199px) ---- */
@media (max-width:1199px){
  .pt-hero__title{ font-size:clamp(40px,7.5vw,88px); }
  .pt-bespoke__wrap{ gap:34px; padding:40px; }
}

/* ---- tablet (≤991px) ---- */
@media (max-width:991px){
  .pt-about{ padding:80px 0 35px; }
  .pt-feats{ padding:70px 0; }
  .pt-offer{ padding:70px 0 55px; }
  .pt-bespoke{ padding:0px 0 80px; }
  .pt-fleet{ padding:15px 0 70px; }
  .pt-contact{ padding:70px 0; }

  .pt-feat{ gap:18px; padding:26px 0; }
  .pt-feat__icon{ width:48px; height:48px; font-size:19px; }
  .pt-feat__title{ font-size:19px; }

  .pt-bespoke__icon{ width:96px; height:96px; }
  .pt-bespoke__icon svg{ width:46px; height:46px; }

  .pt-offer__body{ padding:32px; }

  .pt-contact .col-lg-4, .pt-contact .col-lg-1, .pt-contact .col-lg-7{
    margin-bottom:40px;
  }
  .pt-contact .col-lg-7{ margin-bottom:0; }
}

/* ---- mobile / small tablet (≤767px) ---- */
@media (max-width:767px){
  .hide-on-mobile{ display:none; }
  .hide-on-desktop{ display:block; }

  .container{ padding-left:20px; padding-right:20px; }

  .pt-hero__content .container{ padding-left:20px; padding-right:20px; }
  .pt-hero__badge{ width:52px; height:52px; margin-bottom:18px; }
  .pt-hero__title{ margin-bottom:16px; }
  .pt-hero__moto{ margin-bottom:24px; }
  .pt-hero__cta{ gap:10px; }
  .pt-btn{ height:48px; padding:0 20px; font-size:13px; flex:1 1 auto; justify-content:center; }

  .pt-eyebrow{ font-size:11px; letter-spacing:.16em; }

  .pt-about{ padding:60px 0 15px; }
  .pt-feats{ padding:50px 0; }
  .pt-offer{ padding:50px 0 40px; }
  .pt-bespoke{ padding:0px 0 60px; }
  .pt-fleet{ padding:10px 0 50px; }
  .pt-contact{ padding:50px 0; }

  .pt-feat{ flex-direction:column; gap:14px; padding:22px 0; }

  .pt-offer__title{ font-size:24px; }
  .pt-offer__body{ padding:26px 22px; }

  .cars a{ width:50%; }

  .recaptcha{ gap:10px; }
  #contact_captcha_img{ width:100%; max-width:160px; }
}

/* ---- small phones (≤420px) ---- */
@media (max-width:420px){
  .pt-hero__cta{ flex-direction:column; }
  .pt-btn{ width:100%; }

  .pt-offer__percent{ font-size:38px; }
  .pt-offer__stub{ padding:20px 10px; }

  .pt-bespoke__icon{ width:80px; height:80px; }
  .pt-bespoke__icon svg{ width:38px; height:38px; }

  .pt-fab__toggle{ width:54px; height:54px; font-size:21px; }
  .pt-fab__opt{ width:46px; height:46px; font-size:17px; }
}