/* ATS Hotel custom design layer */
:root{
  --ats-navy:#0b1f33;
  --ats-navy-2:#132d46;
  --ats-gold:#c99a3d;
  --ats-gold-2:#e4bd68;
  --ats-cream:#fff8eb;
  --ats-soft:#f7f3eb;
  --ats-text:#28323c;
  --ats-muted:#6d7884;
  --ats-radius:22px;
  --ats-shadow:0 18px 55px rgba(10,31,51,.16);
}
body{color:var(--ats-text);background:#fff;font-family:Inter,Arial,Helvetica,sans-serif;}
body.admin-bar .ats-header{top:32px;}
@media (max-width:782px){body.admin-bar .ats-header{top:46px;}}
a{transition:all .2s ease;}
.ats-container{width:min(1180px,calc(100% - 36px));margin:0 auto;}
.ats-section{padding:86px 0;position:relative;}
.ats-section.ats-soft{background:var(--ats-soft);}
.ats-eyebrow{display:inline-flex;align-items:center;gap:10px;text-transform:uppercase;letter-spacing:.18em;font-size:12px;font-weight:800;color:var(--ats-gold);margin-bottom:14px;}
.ats-eyebrow:before{content:"";display:block;width:34px;height:2px;background:var(--ats-gold);}
.ats-section-title{font-family:Georgia,'Times New Roman',serif;color:var(--ats-navy);font-size:clamp(32px,4vw,52px);line-height:1.08;margin:0 0 18px;}
.ats-lead{font-size:18px;line-height:1.78;color:var(--ats-muted);margin:0;}
.ats-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;border-radius:999px;padding:14px 24px;font-weight:800;text-decoration:none!important;border:1px solid transparent;box-shadow:0 10px 24px rgba(11,31,51,.14);}
.ats-btn-primary{background:linear-gradient(135deg,var(--ats-gold),var(--ats-gold-2));color:#172333!important;}
.ats-btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 30px rgba(201,154,61,.32);}
.ats-btn-outline{background:rgba(255,255,255,.08);color:#fff!important;border-color:rgba(255,255,255,.38);box-shadow:none;}
.ats-btn-outline:hover{background:#fff;color:var(--ats-navy)!important;}
.ats-btn-dark{background:var(--ats-navy);color:#fff!important;}
.ats-btn-light{background:#fff;color:var(--ats-navy)!important;}

/* Header */
.ats-header{position:sticky;top:0;z-index:9999;background:#fff;box-shadow:0 10px 28px rgba(10,31,51,.08);}
.ats-topbar{background:var(--ats-navy);color:#dfeaf4;font-size:13px;}
.ats-topbar .ats-container{display:flex;justify-content:space-between;align-items:center;gap:18px;padding:8px 0;}
.ats-topbar a{color:#fff;text-decoration:none;font-weight:700;}
.ats-topbar span{display:inline-flex;align-items:center;gap:7px;margin-right:16px;}
.ats-mainnav{background:#fff;}
.ats-mainnav .ats-container{display:flex;align-items:center;justify-content:space-between;gap:22px;min-height:76px;}
.ats-brand{display:flex;align-items:center;gap:12px;text-decoration:none!important;color:var(--ats-navy)!important;min-width:170px;}
.ats-brand img{max-height:68px;max-width:110px;width:auto;display:block;}
.ats-brand-text{font-family:Georgia,'Times New Roman',serif;font-size:27px;font-weight:800;letter-spacing:.03em;line-height:1;color:var(--ats-navy);}
.ats-brand-sub{display:block;font-family:Inter,Arial,sans-serif;font-size:10px;letter-spacing:.28em;text-transform:uppercase;color:var(--ats-gold);margin-top:5px;}
.ats-nav{display:flex;align-items:center;gap:6px;margin-left:auto;}
.ats-nav .navbar-nav{float:none;margin:0;display:flex;align-items:center;gap:4px;}
.ats-nav .navbar-nav>li{float:none;position:relative;}
.ats-nav .navbar-nav>li>a{color:var(--ats-navy)!important;font-weight:800;font-size:14px;letter-spacing:.02em;padding:14px 11px!important;text-decoration:none;border-radius:12px;}
.ats-nav .navbar-nav>li>a:hover,.ats-nav .navbar-nav>.active>a{background:var(--ats-soft)!important;color:var(--ats-gold)!important;}
.ats-nav .dropdown-menu{border:0;border-radius:16px;box-shadow:var(--ats-shadow);padding:10px;}
.ats-mobile-toggle{display:none;background:var(--ats-navy);border:0;border-radius:13px;width:45px;height:45px;color:#fff;align-items:center;justify-content:center;font-size:25px;line-height:1;}
.ats-header-actions{display:flex;gap:10px;align-items:center;}
.ats-call-pill{display:inline-flex;align-items:center;gap:8px;border:1px solid #e8ddc8;border-radius:999px;padding:11px 15px;color:var(--ats-navy)!important;text-decoration:none!important;font-weight:800;background:#fffaf0;}
.ats-book-pill{display:inline-flex;align-items:center;gap:8px;border-radius:999px;background:linear-gradient(135deg,var(--ats-gold),var(--ats-gold-2));color:#142133!important;text-decoration:none!important;padding:12px 18px;font-weight:900;box-shadow:0 10px 20px rgba(201,154,61,.28);}

/* Hero */
.ats-hero{position:relative;min-height:640px;display:flex;align-items:center;overflow:hidden;background:var(--ats-navy);}
.ats-hero-slider{position:absolute;inset:0;}
.ats-hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transform:scale(1.05);transition:opacity 1.2s ease,transform 6s ease;}
.ats-hero-slide.is-active{opacity:1;transform:scale(1);}
.ats-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,24,40,.88),rgba(7,24,40,.58),rgba(7,24,40,.18));z-index:1;}
.ats-hero:after{content:"";position:absolute;inset:auto 0 0;height:180px;background:linear-gradient(0deg,#fff,rgba(255,255,255,0));z-index:2;}
.ats-hero-inner{position:relative;z-index:3;color:#fff;padding:64px 0 96px;max-width:790px;}
.ats-hero-kicker{display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.24);backdrop-filter:blur(10px);padding:9px 14px;border-radius:999px;color:#fff;font-weight:800;font-size:13px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:22px;}
.ats-hero h1{font-family:Georgia,'Times New Roman',serif;font-size:clamp(40px,5.2vw,72px);line-height:1;margin:0 0 20px;color:#fff;letter-spacing:-.03em;}
.ats-hero p{font-size:19px;line-height:1.65;color:#edf5ff;max-width:680px;margin:0 0 26px;}
.ats-hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:36px;}
.ats-hero-stats{display:grid;grid-template-columns:repeat(3,minmax(120px,1fr));gap:14px;max-width:650px;}
.ats-stat{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:18px;padding:17px 18px;backdrop-filter:blur(10px);}
.ats-stat strong{display:block;font-size:29px;color:var(--ats-gold-2);line-height:1;}
.ats-stat span{display:block;color:#fff;font-size:13px;margin-top:8px;font-weight:700;}

/* Quick booking */
.ats-booking-panel{position:relative;z-index:4;margin-top:-58px;}
.ats-booking-card{background:#fff;border-radius:28px;box-shadow:var(--ats-shadow);padding:26px;display:grid;grid-template-columns:1.5fr 1fr 1fr auto;gap:16px;align-items:end;border:1px solid rgba(201,154,61,.2);}
.ats-field label{display:block;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.12em;color:var(--ats-gold);margin-bottom:8px;}
.ats-field input,.ats-field select,.ats-field textarea{width:100%;border:1px solid #eadfcb;border-radius:16px;padding:14px 15px;color:var(--ats-navy);font-weight:700;background:#fffaf3;outline:none;}
.ats-field input:focus,.ats-field select:focus,.ats-field textarea:focus{border-color:var(--ats-gold);box-shadow:0 0 0 4px rgba(201,154,61,.13);}

/* Grids and cards */
.ats-two-col{display:grid;grid-template-columns:1.02fr .98fr;gap:48px;align-items:center;}
.ats-image-stack{position:relative;min-height:520px;}
.ats-image-stack img{position:absolute;object-fit:cover;border-radius:28px;box-shadow:var(--ats-shadow);}
.ats-image-stack .one{width:73%;height:430px;left:0;top:0;}
.ats-image-stack .two{width:53%;height:305px;right:0;bottom:0;border:8px solid #fff;}
.ats-badge{position:absolute;left:28px;bottom:55px;background:#fff;border-radius:22px;padding:18px 22px;box-shadow:var(--ats-shadow);min-width:190px;}
.ats-badge strong{font-size:36px;color:var(--ats-gold);display:block;line-height:1;}
.ats-badge span{font-weight:900;color:var(--ats-navy);}
.ats-checks{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:26px 0 0;padding:0;list-style:none;}
.ats-checks li{background:#fff;border:1px solid #ede3d3;border-radius:14px;padding:13px 14px;font-weight:800;color:var(--ats-navy);}
.ats-checks li:before{content:"✓";color:var(--ats-gold);font-weight:900;margin-right:9px;}
.ats-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.ats-room-card,.ats-facility-card,.ats-attraction-card{background:#fff;border-radius:24px;box-shadow:0 12px 40px rgba(10,31,51,.1);overflow:hidden;border:1px solid #f0e6d7;}
.ats-room-card{display:flex;flex-direction:column;height:100%;}
.ats-room-body{display:flex;flex-direction:column;flex:1;}
.ats-room-body .ats-card-link{margin-top:auto;}
.ats-room-card img{width:100%;height:245px;object-fit:cover;display:block;}
.ats-room-body{padding:23px;}
.ats-room-body h3,.ats-facility-card h3,.ats-attraction-card h3{font-family:Georgia,'Times New Roman',serif;color:var(--ats-navy);font-size:25px;margin:0 0 10px;}
.ats-room-body p,.ats-facility-card p,.ats-attraction-card p{color:var(--ats-muted);line-height:1.7;margin:0 0 18px;}
.ats-room-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:18px;}
.ats-room-meta span{background:var(--ats-soft);color:var(--ats-navy);border-radius:999px;padding:7px 11px;font-size:12px;font-weight:800;}
.ats-card-link{font-weight:900;color:var(--ats-gold)!important;text-decoration:none!important;}
.ats-facility-card{padding:26px;}
.ats-facility-icon{width:54px;height:54px;border-radius:18px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--ats-gold),var(--ats-gold-2));font-size:25px;margin-bottom:18px;}
.ats-gallery-grid{display:grid;grid-template-columns:2fr 1fr 1fr;grid-auto-rows:235px;gap:16px;}
.ats-gallery-grid img{width:100%;height:100%;object-fit:cover;border-radius:22px;box-shadow:0 10px 30px rgba(10,31,51,.1);}
.ats-gallery-grid img:first-child{grid-row:span 2;}
.ats-cta{background:linear-gradient(135deg,var(--ats-navy),var(--ats-navy-2));color:#fff;border-radius:32px;padding:55px;display:grid;grid-template-columns:1.4fr auto;gap:32px;align-items:center;box-shadow:var(--ats-shadow);overflow:hidden;position:relative;}
.ats-cta:before{content:"";position:absolute;right:-120px;top:-150px;width:360px;height:360px;background:rgba(201,154,61,.18);border-radius:999px;}
.ats-cta h2{font-family:Georgia,'Times New Roman',serif;font-size:clamp(31px,4vw,50px);line-height:1.05;color:#fff;margin:0 0 16px;}
.ats-cta p{color:#dce7f2;font-size:18px;line-height:1.7;margin:0;}
.ats-attraction-card{padding:25px;}
.ats-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
.ats-contact-card{background:#fff;border:1px solid #ede3d3;border-radius:24px;padding:28px;box-shadow:0 12px 40px rgba(10,31,51,.08);}
.ats-contact-item{display:flex;gap:14px;margin-bottom:18px;align-items:flex-start;}
.ats-contact-item strong{display:block;color:var(--ats-navy);font-size:16px;}
.ats-contact-item span,.ats-contact-item a{color:var(--ats-muted);text-decoration:none;line-height:1.6;}
.ats-contact-form{display:grid;gap:14px;}
.ats-contact-form button{border:0;cursor:pointer;}

/* Footer */
.ats-footer{background:#071826;color:#dce7f2;margin-top:0;}
.ats-footer-main{padding:62px 0 42px;}
.ats-footer-grid{display:grid;grid-template-columns:1.35fr .8fr 1fr 1fr;gap:32px;}
.ats-footer h3{font-family:Georgia,'Times New Roman',serif;color:#fff;font-size:26px;margin:0 0 18px;}
.ats-footer p,.ats-footer li{color:#bdd0df;line-height:1.8;}
.ats-footer ul{list-style:none;margin:0;padding:0;}
.ats-footer a{color:#dce7f2;text-decoration:none;}
.ats-footer a:hover{color:var(--ats-gold-2);}
.ats-footer-logo{font-family:Georgia,'Times New Roman',serif;color:#fff;font-size:34px;font-weight:900;margin-bottom:10px;}
.ats-footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:18px 0;color:#a8bfce;font-size:14px;}
.ats-footer-bottom .ats-container{display:flex;justify-content:space-between;gap:16px;align-items:center;}
.ats-floating-whatsapp{position:fixed;right:22px;bottom:22px;z-index:99999;background:#25d366;color:#fff!important;text-decoration:none!important;border-radius:999px;width:62px;height:62px;display:flex;align-items:center;justify-content:center;font-size:31px;box-shadow:0 14px 30px rgba(37,211,102,.38);font-weight:900;}
.ats-floating-whatsapp span{font-size:0;}
.ats-floating-whatsapp:before{content:"✆";font-size:28px;}

/* Page header */
.ats-page-hero{background:linear-gradient(135deg,rgba(7,24,38,.88),rgba(19,45,70,.75)),var(--ats-page-bg);background-size:cover;background-position:center;min-height:310px;display:flex;align-items:center;color:#fff;}
.ats-page-hero h1{font-family:Georgia,'Times New Roman',serif;color:#fff;font-size:clamp(36px,4.6vw,60px);margin:0 0 12px;}
.ats-page-hero p{font-size:19px;line-height:1.7;max-width:760px;color:#e9f3fc;margin:0;}
.ats-room-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.ats-map-box{border:0;width:100%;height:420px;border-radius:24px;overflow:hidden;box-shadow:var(--ats-shadow);background:#eee;}

@media (max-width: 1100px){
  .ats-header-actions .ats-call-pill{display:none;}
  .ats-nav .navbar-nav>li>a{font-size:13px;padding:12px 8px!important;}
  .ats-booking-card{grid-template-columns:1fr 1fr;}
}
@media (max-width: 900px){
  .ats-topbar .ats-container{display:block;text-align:center;line-height:1.9;}
  .ats-mainnav .ats-container{min-height:70px;}
  .ats-mobile-toggle{display:flex;}
  .ats-nav{position:absolute;left:18px;right:18px;top:100%;display:none;background:#fff;border-radius:0 0 24px 24px;box-shadow:var(--ats-shadow);padding:12px;}
  .ats-header.is-open .ats-nav{display:block;}
  .ats-nav .navbar-nav{display:block;width:100%;}
  .ats-nav .navbar-nav>li>a{display:block;padding:13px 15px!important;}
  .ats-book-pill{padding:11px 14px;font-size:13px;}
  .ats-hero{min-height:640px;}
  .ats-hero:before{background:linear-gradient(180deg,rgba(7,24,40,.9),rgba(7,24,40,.56));}
  .ats-hero-stats{grid-template-columns:1fr;}
  .ats-booking-panel{margin-top:-45px;}
  .ats-booking-card{grid-template-columns:1fr;padding:20px;border-radius:22px;}
  .ats-two-col,.ats-contact-grid{grid-template-columns:1fr;}
  .ats-image-stack{min-height:auto;display:grid;grid-template-columns:1fr;gap:16px;}
  .ats-image-stack img{position:static;width:100%!important;height:330px!important;}
  .ats-badge{position:static;margin-top:-10px;}
  .ats-card-grid,.ats-room-list{grid-template-columns:1fr 1fr;}
  .ats-gallery-grid{grid-template-columns:1fr 1fr;grid-auto-rows:210px;}
  .ats-gallery-grid img:first-child{grid-row:span 1;grid-column:span 2;}
  .ats-cta{grid-template-columns:1fr;padding:36px;}
  .ats-footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 620px){
  .ats-container{width:min(100% - 28px,1180px);}
  .ats-section{padding:62px 0;}
  .ats-topbar span{display:block;margin:0;}
  .ats-brand-text{font-size:22px;}
  .ats-brand-sub{font-size:9px;letter-spacing:.2em;}
  .ats-brand img{max-height:54px;max-width:95px;}
  .ats-header-actions .ats-book-pill{display:none;}
  .ats-hero{min-height:640px;}
  .ats-hero-inner{padding:46px 0 78px;}
  .ats-hero p{font-size:17px;}
  .ats-hero-actions{display:grid;grid-template-columns:1fr;}
  .ats-btn{width:100%;}
  .ats-checks,.ats-card-grid,.ats-room-list,.ats-gallery-grid,.ats-footer-grid{grid-template-columns:1fr;}
  .ats-gallery-grid img:first-child{grid-column:span 1;}
  .ats-room-card img{height:220px;}
  .ats-footer-bottom .ats-container{display:block;text-align:center;line-height:1.8;}
  .ats-floating-whatsapp{width:54px;height:54px;right:16px;bottom:16px;}
}

/* Safety: hide old Bellevue/Elementor demo header/footer if injected by saved templates */
body .thhf-header, body .hfe-site-header, body header.elementor-location-header {display:none!important;}
body .thhf-footer, body .hfe-site-footer, body footer.elementor-location-footer {display:none!important;}
body .ats-header{display:block!important;}
body .ats-footer{display:block!important;}


/* ATS V3 polish */
.ats-header{backdrop-filter:saturate(1.1) blur(6px);}
.ats-topbar{line-height:1.25;}
.ats-room-list{align-items:stretch;}
.ats-page-hero .ats-container{padding-top:24px;padding-bottom:24px;}
.ats-room-card:hover,.ats-facility-card:hover,.ats-attraction-card:hover{transform:translateY(-3px);box-shadow:0 18px 48px rgba(10,31,51,.14);}
.ats-room-card,.ats-facility-card,.ats-attraction-card{transition:transform .22s ease,box-shadow .22s ease;}
@media (min-width: 1200px){
  .ats-section{padding:76px 0;}
}
@media (max-width: 620px){
  .ats-topbar{font-size:12px;}
  .ats-page-hero{min-height:250px;}
  .ats-page-hero p{font-size:16px;}
  .ats-section-title{font-size:clamp(28px,9vw,40px);}
  .ats-lead{font-size:16px;line-height:1.65;}
}

/* ATS V4 booking, rates, calendar and availability */
.ats-booking-layout{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:28px;align-items:start;}
.ats-booking-main-card .ats-lead{margin-bottom:24px;}
.ats-availability-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.ats-availability-form .ats-field-full{grid-column:1 / -1;}
.ats-availability-form button{border:0;cursor:pointer;}
.ats-room-rate{background:#fff8eb;border:1px solid #ecd9ad;border-radius:14px;padding:11px 13px;margin:0 0 14px;}
.ats-room-rate span{display:block;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.14em;color:var(--ats-gold);margin-bottom:3px;}
.ats-room-rate strong{display:block;color:var(--ats-navy);font-size:14px;line-height:1.35;}
.ats-room-availability{display:inline-flex;align-items:center;gap:8px;color:#176b45;background:#eefaf4;border:1px solid #cdeedd;border-radius:999px;padding:7px 11px;font-size:12px;font-weight:900;margin:0 0 14px;}
.ats-availability-dot{width:9px;height:9px;background:#22c55e;border-radius:999px;box-shadow:0 0 0 4px rgba(34,197,94,.15);}
.ats-rate-list{display:grid;gap:10px;margin:20px 0 24px;}
.ats-rate-row{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;border-bottom:1px solid #efe4d2;padding-bottom:10px;}
.ats-rate-row strong{color:var(--ats-navy);font-size:15px;}
.ats-rate-row span{color:var(--ats-muted);font-weight:800;text-align:right;font-size:13px;}
.ats-calendar-wrap{background:#fff;border:1px solid #ede3d3;border-radius:28px;padding:24px;box-shadow:0 12px 40px rgba(10,31,51,.08);}
.ats-calendar-toolbar{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-bottom:18px;}
.ats-calendar-toolbar h3{font-family:Georgia,'Times New Roman',serif;color:var(--ats-navy);font-size:28px;margin:0;text-align:center;}
.ats-calendar-toolbar button{width:44px;height:44px;border:1px solid #ecd9ad;border-radius:999px;background:#fff8eb;color:var(--ats-navy);font-size:28px;line-height:1;cursor:pointer;font-weight:900;}
.ats-calendar{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:8px;}
.ats-calendar .day-name{font-size:12px;text-transform:uppercase;letter-spacing:.1em;font-weight:900;color:var(--ats-gold);text-align:center;padding:8px 4px;}
.ats-calendar .cal-day{min-height:74px;border:1px solid #ede3d3;border-radius:16px;background:#fff;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;padding:10px;cursor:pointer;color:var(--ats-navy);font-weight:900;}
.ats-calendar .cal-day:hover{border-color:var(--ats-gold);box-shadow:0 8px 18px rgba(201,154,61,.14);}
.ats-calendar .cal-day.muted{opacity:.35;cursor:default;background:#f8f8f8;}
.ats-calendar .cal-day.today{border-color:var(--ats-gold);box-shadow:inset 0 0 0 2px rgba(201,154,61,.26);}
.ats-calendar .cal-day.selected{background:linear-gradient(135deg,var(--ats-gold),var(--ats-gold-2));color:#142133;border-color:transparent;}
.ats-calendar .cal-day small{display:block;font-size:11px;color:#176b45;font-weight:800;}
.ats-calendar .cal-day.selected small{color:#142133;}
.ats-calendar-legend{display:flex;gap:18px;flex-wrap:wrap;margin-top:18px;color:var(--ats-muted);font-weight:800;font-size:13px;}
.ats-calendar-legend i{display:inline-block;width:12px;height:12px;border-radius:50%;margin-right:7px;vertical-align:-1px;border:1px solid #ddd;}
.ats-calendar-legend .open{background:#eefaf4;border-color:#cdeedd;}
.ats-calendar-legend .selected{background:var(--ats-gold);border-color:var(--ats-gold);}
.ats-calendar-legend .today{background:#fff;border-color:var(--ats-gold);box-shadow:0 0 0 2px rgba(201,154,61,.2);}
.ats-mphb-box{margin-top:24px;}
@media (max-width: 900px){
  .ats-booking-layout{grid-template-columns:1fr;}
  .ats-availability-form{grid-template-columns:1fr;}
  .ats-calendar .cal-day{min-height:64px;padding:8px;}
}
@media (max-width: 620px){
  .ats-calendar-wrap{padding:14px;border-radius:20px;}
  .ats-calendar{gap:5px;}
  .ats-calendar .cal-day{min-height:52px;border-radius:11px;font-size:13px;padding:6px;}
  .ats-calendar .cal-day small{font-size:9px;}
  .ats-calendar-toolbar h3{font-size:21px;}
  .ats-calendar-toolbar button{width:38px;height:38px;font-size:23px;}
  .ats-rate-row{display:block;}
  .ats-rate-row span{text-align:left;display:block;margin-top:4px;}
}

/* ATS V5 final booking polish */
.ats-contact-card{overflow:hidden;}
.ats-rate-card .ats-section-title{font-size:clamp(28px,3vw,40px);}
.ats-rate-row{background:#fffaf3;border:1px solid #efe4d2;border-radius:14px;padding:12px 14px;align-items:center;}
.ats-rate-row strong{max-width:52%;line-height:1.35;}
.ats-rate-row span{background:#eefaf4;color:#176b45;border:1px solid #cdeedd;border-radius:999px;padding:7px 10px;font-size:12px;white-space:nowrap;}
.ats-booking-layout .ats-contact-card{min-height:auto;}
.ats-calendar .cal-day small{font-size:10px;}
.ats-page-hero{min-height:290px;}
.ats-availability-form textarea{resize:vertical;min-height:120px;}
.ats-contact-grid .ats-availability-form{gap:14px;}
.ats-contact-grid .ats-section-title{font-size:clamp(30px,3.4vw,44px);}
.ats-header-actions .ats-call-pill[href^="tel"]:before{content:"☎";font-weight:900;}
.ats-book-pill:before{content:"";}
@media (max-width:1100px){
  .ats-topbar .ats-container{font-size:12px;}
  .ats-mainnav .ats-container{gap:14px;}
}
@media (max-width:900px){
  .ats-topbar{display:none;}
  body.admin-bar .ats-header{top:46px;}
  .ats-header{top:0;}
  .ats-mainnav .ats-container{min-height:66px;}
  .ats-brand{min-width:auto;}
  .ats-header-actions{margin-left:auto;}
  .ats-nav{max-height:calc(100vh - 90px);overflow:auto;}
  .ats-hero{min-height:560px;}
  .ats-hero h1{font-size:clamp(36px,8vw,54px);}
  .ats-hero-stats{display:none;}
  .ats-booking-panel{margin-top:0;padding:18px 0;background:#fff;}
  .ats-page-hero{min-height:240px;}
}
@media (max-width:620px){
  .ats-container{width:min(100% - 24px,1180px);}
  .ats-header-actions{display:none;}
  .ats-mobile-toggle{margin-left:auto;}
  .ats-brand img{max-height:50px;max-width:86px;}
  .ats-hero{min-height:520px;}
  .ats-hero-inner{padding:36px 0 54px;}
  .ats-hero-kicker{font-size:11px;padding:8px 11px;margin-bottom:14px;}
  .ats-hero p{font-size:16px;line-height:1.55;}
  .ats-booking-card{box-shadow:0 10px 28px rgba(10,31,51,.12);}
  .ats-section{padding:50px 0;}
  .ats-contact-card{padding:22px!important;border-radius:22px!important;}
  .ats-availability-form{grid-template-columns:1fr!important;}
  .ats-rate-row strong{max-width:100%;}
  .ats-rate-row span{display:inline-flex;margin-top:7px;white-space:normal;text-align:left;}
  .ats-calendar .day-name{font-size:10px;padding:6px 2px;}
  .ats-calendar .cal-day small{font-size:0;}
  .ats-calendar .cal-day small:after{content:"Open";font-size:9px;}
  .ats-map-box{height:320px;}
}


/* ATS V5 final professional polish + transparent logo */
.ats-brand{min-width:205px;}
.ats-brand img.ats-brand-logo{max-height:92px;max-width:150px;width:auto;height:auto;object-fit:contain;filter:drop-shadow(0 4px 9px rgba(201,154,61,.18));}
.ats-mainnav .ats-container{min-height:96px;}
.ats-hero:before{background:linear-gradient(90deg,rgba(7,24,40,.90),rgba(7,24,40,.62),rgba(7,24,40,.20));}
.ats-hero h1{font-size:clamp(38px,4.8vw,66px);max-width:760px;text-shadow:0 8px 28px rgba(0,0,0,.35);}
.ats-hero p{text-shadow:0 6px 20px rgba(0,0,0,.3);font-weight:600;}
.ats-contact-actions,.ats-map-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;}
.ats-map-actions{margin:0 0 18px;}
.ats-contact-card a{word-break:break-word;}
.ats-room-rate strong{color:#176b45;}
.ats-facility-card{min-height:230px;}
.ats-gallery-grid img{background:#f8f3ea;}
@media (max-width:1100px){
  .ats-brand{min-width:150px;}
  .ats-brand img.ats-brand-logo{max-height:82px;max-width:128px;}
  .ats-mainnav .ats-container{min-height:88px;}
}
@media (max-width:900px){
  .ats-brand img.ats-brand-logo{max-height:76px;max-width:120px;}
  .ats-mainnav .ats-container{min-height:82px;}
  .ats-hero h1{font-size:clamp(34px,8vw,50px);}
}
@media (max-width:620px){
  .ats-brand img.ats-brand-logo{max-height:70px;max-width:112px;}
  .ats-mainnav .ats-container{min-height:76px;}
  .ats-hero h1{font-size:clamp(32px,9vw,44px);}
  .ats-hero{min-height:500px;}
  .ats-contact-actions .ats-btn,.ats-map-actions .ats-btn{width:100%;}
}

/* V6 fix: remove Bellevue back-to-top overlap and use a clean WhatsApp icon */
#scrollUp{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important;}
.ats-floating-whatsapp{z-index:2147483000!important;overflow:hidden;isolation:isolate;}
.ats-floating-whatsapp:before{content:none!important;display:none!important;}
.ats-floating-whatsapp svg{display:block;width:34px;height:34px;color:#fff;line-height:1;}
.ats-floating-whatsapp span{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}
@media (max-width: 600px){.ats-floating-whatsapp{right:18px!important;bottom:22px!important;width:56px!important;height:56px!important}.ats-floating-whatsapp svg{width:31px;height:31px}}

/* ATS V7 premium UI polish */
html{scroll-behavior:smooth;}
body{background:linear-gradient(180deg,#fff 0%,#fbf7ee 100%);}
.ats-mainnav{background:rgba(255,255,255,.94);backdrop-filter:blur(14px);border-bottom:1px solid rgba(201,154,61,.22);}
.ats-mainnav .ats-container{min-height:104px;}
.ats-brand{min-width:265px;gap:14px;}
.ats-brand-logo-wrap{display:flex;align-items:center;justify-content:center;width:104px;height:94px;flex:0 0 auto;}
.ats-brand img.ats-brand-logo{max-height:102px;max-width:112px;width:auto;height:auto;object-fit:contain;filter:drop-shadow(0 7px 12px rgba(201,154,61,.20));}
.ats-brand-copy{display:flex;flex-direction:column;line-height:1.05;white-space:nowrap;}
.ats-brand-copy strong{font-family:Georgia,'Times New Roman',serif;color:#0b1f33;font-size:28px;letter-spacing:.02em;}
.ats-brand-copy small{font-weight:900;text-transform:uppercase;letter-spacing:.17em;color:var(--ats-gold);font-size:10px;margin-top:5px;}
.ats-nav .navbar-nav>li>a{position:relative;}
.ats-nav .navbar-nav>li>a:after{content:"";position:absolute;left:13px;right:13px;bottom:7px;height:2px;background:var(--ats-gold);transform:scaleX(0);transform-origin:center;transition:transform .2s ease;}
.ats-nav .navbar-nav>li>a:hover:after,.ats-nav .navbar-nav>.active>a:after{transform:scaleX(1);}
.ats-call-pill,.ats-book-pill{min-height:48px;}
.ats-hero{min-height:690px;}
.ats-hero:before{background:linear-gradient(90deg,rgba(4,18,32,.93) 0%,rgba(7,24,40,.72) 45%,rgba(7,24,40,.28) 100%);}
.ats-hero-inner{max-width:830px;padding:74px 0 116px;}
.ats-hero-inner:before{content:"";position:absolute;left:-34px;top:34px;width:140px;height:140px;border:1px solid rgba(228,189,104,.28);border-radius:50%;z-index:-1;}
.ats-hero h1{font-size:clamp(42px,4.7vw,70px);letter-spacing:-.04em;}
.ats-hero-kicker{background:rgba(255,255,255,.16);box-shadow:inset 0 1px 0 rgba(255,255,255,.2);}
.ats-hero-actions .ats-btn{min-width:170px;}
.ats-booking-card-premium{grid-template-columns:1.35fr 1fr 1fr .9fr auto;position:relative;overflow:hidden;}
.ats-booking-card-premium:before{content:"";position:absolute;inset:0 0 auto 0;height:5px;background:linear-gradient(90deg,var(--ats-gold),var(--ats-gold-2),var(--ats-gold));}
.ats-trust-strip{padding:36px 0 10px;background:#fff;}
.ats-trust-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}
.ats-trust-grid>div{background:linear-gradient(180deg,#fff,#fffaf1);border:1px solid #efe4d2;border-radius:22px;padding:20px 18px;box-shadow:0 10px 30px rgba(10,31,51,.07);}
.ats-trust-grid strong{display:block;color:var(--ats-navy);font-family:Georgia,'Times New Roman',serif;font-size:20px;margin-bottom:7px;}
.ats-trust-grid span{display:block;color:var(--ats-muted);line-height:1.55;font-weight:700;font-size:14px;}
.ats-section:before{content:"";position:absolute;inset:0 auto auto 0;width:180px;height:180px;background:radial-gradient(circle,rgba(228,189,104,.12),transparent 68%);pointer-events:none;}
.ats-room-card{position:relative;}
.ats-room-card img{transition:transform .45s ease,filter .45s ease;}
.ats-room-card:hover img{transform:scale(1.04);filter:saturate(1.08);}
.ats-room-card:after{content:"Price on Request";position:absolute;top:16px;right:16px;background:rgba(255,250,243,.94);border:1px solid rgba(201,154,61,.35);color:#176b45;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:900;box-shadow:0 8px 20px rgba(10,31,51,.12);}
.ats-room-body h3{font-size:27px;}
.ats-facility-card{position:relative;overflow:hidden;}
.ats-facility-card:after{content:"";position:absolute;right:-36px;top:-36px;width:110px;height:110px;background:rgba(201,154,61,.09);border-radius:50%;}
.ats-gallery-grid img{transition:transform .35s ease,box-shadow .35s ease;}
.ats-gallery-grid img:hover{transform:translateY(-4px);box-shadow:0 18px 42px rgba(10,31,51,.16);}
.ats-restaurant-section{background:linear-gradient(135deg,#071826,#132d46);color:#fff;overflow:hidden;}
.ats-restaurant-section .ats-section-title{color:#fff;}
.ats-restaurant-section .ats-lead{color:#dce7f2;}
.ats-restaurant-section .ats-checks li{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.16);color:#fff;}
.ats-restaurant-box{position:relative;}
.ats-premium-image img{width:100%;height:420px;object-fit:cover;border-radius:32px;border:8px solid rgba(255,255,255,.1);box-shadow:0 25px 70px rgba(0,0,0,.26);}
.ats-contact-card{background:rgba(255,255,255,.88);backdrop-filter:blur(10px);}
.ats-map-box{border:8px solid #fff;}
.ats-footer{background:radial-gradient(circle at 20% 0%,rgba(201,154,61,.15),transparent 35%),linear-gradient(135deg,#061522,#0b1f33);}
.ats-footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
.ats-footer-brand img{width:72px;height:auto;filter:drop-shadow(0 8px 14px rgba(201,154,61,.2));}
.ats-floating-whatsapp{right:24px!important;bottom:24px!important;border:3px solid rgba(255,255,255,.85);box-shadow:0 18px 40px rgba(37,211,102,.42),0 0 0 8px rgba(37,211,102,.12)!important;}
@media (max-width:1200px){
  .ats-brand{min-width:220px;}
  .ats-brand-copy strong{font-size:23px;}
  .ats-brand-copy small{font-size:9px;letter-spacing:.14em;}
  .ats-booking-card-premium{grid-template-columns:1fr 1fr 1fr;}
  .ats-booking-card-premium button{grid-column:1 / -1;}
}
@media (max-width:1050px){
  .ats-brand-copy{display:none;}
  .ats-brand{min-width:130px;}
  .ats-brand-logo-wrap{width:112px;}
}
@media (max-width:900px){
  .ats-mainnav .ats-container{min-height:88px;}
  .ats-brand-logo-wrap{width:100px;height:82px;}
  .ats-brand img.ats-brand-logo{max-height:88px;max-width:100px;}
  .ats-booking-card-premium{grid-template-columns:1fr 1fr;}
  .ats-trust-grid{grid-template-columns:1fr 1fr;}
  .ats-hero{min-height:610px;}
  .ats-hero-inner{padding:48px 0 88px;}
}
@media (max-width:620px){
  .ats-mainnav .ats-container{min-height:78px;}
  .ats-brand-logo-wrap{width:92px;height:72px;}
  .ats-brand img.ats-brand-logo{max-height:78px;max-width:92px;}
  .ats-booking-card-premium{grid-template-columns:1fr;}
  .ats-trust-grid{grid-template-columns:1fr;}
  .ats-trust-strip{padding:26px 0 0;}
  .ats-hero{min-height:560px;}
  .ats-hero h1{font-size:clamp(34px,9vw,46px);}
  .ats-hero p{font-size:16px;}
  .ats-premium-image img{height:280px;border-radius:24px;}
  .ats-room-card:after{top:12px;right:12px;font-size:11px;padding:7px 10px;}
  .ats-footer-brand{justify-content:center;}
}

/* ATS V8: premium navigation tabs, rates, offers and FAQ */
.ats-nav{background:linear-gradient(180deg,#fffdf7,#fff7e7);border:1px solid rgba(201,154,61,.28);border-radius:999px;padding:6px;box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 10px 28px rgba(10,31,51,.07);}
.ats-nav .navbar-nav{gap:3px;}
.ats-nav .navbar-nav>li>a{border-radius:999px!important;padding:12px 16px!important;color:#172333!important;font-size:13px;letter-spacing:.01em;background:transparent!important;}
.ats-nav .navbar-nav>li>a:after{display:none!important;}
.ats-nav .navbar-nav>li>a:hover{background:#fff!important;color:#9b6b19!important;box-shadow:0 8px 20px rgba(201,154,61,.15);}
.ats-nav .navbar-nav>.active>a,
.ats-nav .navbar-nav>.current-menu-item>a,
.ats-nav .navbar-nav>.current_page_item>a{background:linear-gradient(135deg,var(--ats-gold),var(--ats-gold-2))!important;color:#142133!important;box-shadow:0 10px 24px rgba(201,154,61,.28);}
.ats-book-pill{background:linear-gradient(135deg,#d5a43d,#ffe097);border:1px solid rgba(123,82,10,.15);}
.ats-call-pill:hover,.ats-book-pill:hover{transform:translateY(-2px);}
.ats-room-card:after{content:attr(data-rate)!important;background:linear-gradient(135deg,#fffdf6,#fff2cf);color:#16603d;border-color:rgba(201,154,61,.42);}
.ats-room-rate strong{font-size:18px;color:#0b1f33;}
.ats-rate-disclaimer{color:var(--ats-muted);font-size:13px;line-height:1.6;margin-top:16px;}
.ats-offer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.ats-offer-card{background:#fff;border:1px solid #efe4d2;border-radius:28px;padding:28px;box-shadow:0 16px 45px rgba(10,31,51,.09);position:relative;overflow:hidden;}
.ats-offer-card:before{content:"";position:absolute;right:-42px;top:-42px;width:128px;height:128px;border-radius:50%;background:rgba(201,154,61,.10);}
.ats-offer-card>span{display:inline-flex;background:linear-gradient(135deg,var(--ats-gold),var(--ats-gold-2));color:#172333;border-radius:999px;padding:7px 12px;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;margin-bottom:18px;}
.ats-offer-card h3{font-family:Georgia,'Times New Roman',serif;color:var(--ats-navy);font-size:28px;margin:0 0 12px;}
.ats-offer-card p{color:var(--ats-muted);line-height:1.7;margin:0 0 18px;}
.ats-pricing-table{background:#fff;border:1px solid #efe4d2;border-radius:30px;box-shadow:0 18px 55px rgba(10,31,51,.10);overflow:hidden;}
.ats-pricing-row{display:grid;grid-template-columns:1.3fr auto auto;gap:18px;align-items:center;padding:20px 22px;border-bottom:1px solid #f0e6d7;}
.ats-pricing-row:last-child{border-bottom:0;}
.ats-pricing-row strong{font-family:Georgia,'Times New Roman',serif;font-size:24px;color:var(--ats-navy);display:block;margin-bottom:5px;}
.ats-pricing-row small{display:block;color:var(--ats-muted);font-weight:700;line-height:1.4;}
.ats-pricing-row>span{display:inline-flex;justify-content:center;background:#eefaf4;color:#176b45;border:1px solid #cdeedd;border-radius:999px;padding:10px 14px;font-weight:900;white-space:nowrap;}
.ats-faq-list{display:grid;gap:14px;max-width:920px;margin:30px auto 0;}
.ats-faq-item{background:#fff;border:1px solid #efe4d2;border-radius:20px;box-shadow:0 10px 30px rgba(10,31,51,.07);overflow:hidden;}
.ats-faq-item summary{cursor:pointer;list-style:none;padding:20px 24px;font-weight:900;color:var(--ats-navy);font-size:17px;position:relative;}
.ats-faq-item summary::-webkit-details-marker{display:none;}
.ats-faq-item summary:after{content:"+";position:absolute;right:22px;top:18px;width:28px;height:28px;border-radius:50%;background:#fff4d8;color:var(--ats-gold);display:flex;align-items:center;justify-content:center;font-weight:900;}
.ats-faq-item[open] summary:after{content:"−";}
.ats-faq-item p{margin:0;padding:0 24px 22px;color:var(--ats-muted);line-height:1.7;}
@media (max-width:1180px){
  .ats-nav .navbar-nav>li>a{padding:11px 12px!important;font-size:12px;}
}
@media (max-width:900px){
  .ats-nav{border-radius:24px;padding:10px;background:#fff;}
  .ats-nav .navbar-nav>li>a{border-radius:16px!important;display:block!important;font-size:14px;}
  .ats-offer-grid{grid-template-columns:1fr 1fr;}
  .ats-pricing-row{grid-template-columns:1fr;align-items:start;}
  .ats-pricing-row .ats-btn{width:100%;}
}
@media (max-width:620px){
  .ats-offer-grid{grid-template-columns:1fr;}
  .ats-pricing-row strong{font-size:21px;}
  .ats-pricing-row>span{justify-content:flex-start;width:max-content;max-width:100%;white-space:normal;}
}

/* ATS V9: 3 requested fixes - rates included, premium tabs, and logo/text vertical alignment */
.ats-mainnav .ats-container{
  min-height:96px;
  gap:18px;
}
.ats-brand{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:16px!important;
  min-width:300px!important;
  flex:0 0 auto;
}
.ats-brand-logo-wrap{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:112px!important;
  height:86px!important;
  flex:0 0 112px!important;
  overflow:visible!important;
}
.ats-brand img.ats-brand-logo{
  max-width:112px!important;
  max-height:86px!important;
  width:auto!important;
  height:auto!important;
  object-fit:contain!important;
  display:block!important;
}
.ats-brand-copy{
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  align-items:flex-start!important;
  align-self:center!important;
  line-height:1.05!important;
  padding:0!important;
  margin:0!important;
  transform:translateY(4px);
}
.ats-brand-copy strong{
  display:block!important;
  margin:0!important;
  padding:0!important;
  line-height:1.05!important;
  font-size:31px!important;
  letter-spacing:.015em!important;
}
.ats-brand-copy small{
  display:block!important;
  margin:7px 0 0!important;
  padding:0!important;
  line-height:1.15!important;
  letter-spacing:.16em!important;
  font-size:10.5px!important;
}
.ats-nav{
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  padding:0!important;
  margin-left:auto!important;
  flex:1 1 auto;
  justify-content:flex-end;
}
.ats-nav .navbar-nav{
  gap:8px!important;
  flex-wrap:nowrap!important;
  justify-content:flex-end!important;
}
.ats-nav .navbar-nav>li>a{
  white-space:nowrap!important;
  border-radius:14px!important;
  padding:13px 14px!important;
  background:#fffaf0!important;
  border:1px solid rgba(201,154,61,.22)!important;
  box-shadow:0 6px 18px rgba(10,31,51,.045)!important;
  color:#142133!important;
  line-height:1.1!important;
}
.ats-nav .navbar-nav>li>a:hover,
.ats-nav .navbar-nav>.active>a,
.ats-nav .navbar-nav>.current-menu-item>a,
.ats-nav .navbar-nav>.current_page_item>a{
  background:linear-gradient(135deg,var(--ats-gold),var(--ats-gold-2))!important;
  color:#142133!important;
  box-shadow:0 12px 28px rgba(201,154,61,.22)!important;
}
.ats-header-actions{
  flex:0 0 auto;
}
@media (max-width:1220px){
  .ats-brand{min-width:260px!important;gap:12px!important;}
  .ats-brand-logo-wrap{width:98px!important;flex-basis:98px!important;height:78px!important;}
  .ats-brand img.ats-brand-logo{max-width:98px!important;max-height:78px!important;}
  .ats-brand-copy strong{font-size:27px!important;}
  .ats-brand-copy small{font-size:9.5px!important;letter-spacing:.13em!important;}
  .ats-nav .navbar-nav>li>a{padding:12px 10px!important;font-size:12px!important;}
  .ats-header-actions .ats-call-pill{display:none!important;}
}
@media (max-width:991px){
  .ats-mainnav .ats-container{min-height:78px;}
  .ats-brand{min-width:auto!important;}
  .ats-brand-copy{display:none!important;}
  .ats-brand-logo-wrap{width:96px!important;height:68px!important;flex-basis:96px!important;}
  .ats-brand img.ats-brand-logo{max-width:96px!important;max-height:68px!important;}
  .ats-nav{position:absolute!important;left:18px!important;right:18px!important;top:100%!important;background:#fff!important;border-radius:0 0 24px 24px!important;box-shadow:var(--ats-shadow)!important;padding:12px!important;display:none!important;}
  .ats-header.is-open .ats-nav{display:block!important;}
  .ats-nav .navbar-nav{display:block!important;width:100%!important;}
  .ats-nav .navbar-nav>li>a{display:block!important;margin-bottom:8px!important;border-radius:16px!important;}
}
@media (max-width:575px){
  .ats-brand-logo-wrap{width:86px!important;height:62px!important;flex-basis:86px!important;}
  .ats-brand img.ats-brand-logo{max-width:86px!important;max-height:62px!important;}
  .ats-book-pill{padding:10px 13px!important;font-size:13px!important;}
}

/* ATS V10: Grand Taj-style header/menu, centered logo lockup, visible booking form */
.ats-header-v10{position:sticky;top:0;z-index:9999;background:#fff;box-shadow:0 4px 18px rgba(10,31,51,.08)}
body.admin-bar .ats-header-v10{top:32px}
.ats-grand-topbar{background:#07192c;color:#f1f5f9;font-size:13px;border-bottom:1px solid rgba(255,255,255,.08)}
.ats-grand-topbar .ats-container{height:42px;display:flex;align-items:center;justify-content:space-between;gap:20px;max-width:1180px}
.ats-grand-topbar a{color:#fff!important;text-decoration:none!important;font-weight:700}
.ats-grand-topbar span{display:inline-flex;align-items:center;gap:5px;white-space:nowrap}
.ats-topbar-right{display:flex;align-items:center;gap:20px;flex-wrap:wrap;justify-content:flex-end}
.ats-grand-nav-wrap{background:#fff;border-bottom:1px solid #eee4d2}
.ats-grand-nav-inner{min-height:100px;display:flex;align-items:center;gap:22px;max-width:1180px}
.ats-brand-v10{display:flex;align-items:center;justify-content:flex-start;min-width:210px;max-width:230px;gap:0!important;padding:8px 0;color:inherit!important}
.ats-brand-v10 .ats-brand-logo-wrap{width:auto!important;height:auto!important;display:flex;align-items:center;justify-content:flex-start;line-height:0}
.ats-brand-v10 img.ats-brand-logo{max-height:86px!important;max-width:190px!important;width:auto!important;height:auto!important;display:block!important;object-fit:contain!important;filter:drop-shadow(0 5px 10px rgba(201,154,61,.22))}
.ats-grand-nav{margin-left:auto!important;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;padding:0!important;display:flex;align-items:center;overflow:visible!important}
.ats-grand-menu{display:flex!important;align-items:center!important;gap:2px!important;margin:0!important;padding:0!important;list-style:none!important;float:none!important}
.ats-grand-menu>li{position:relative;list-style:none;float:none!important;margin:0!important}
.ats-grand-menu>li>a{display:flex!important;align-items:center!important;height:48px!important;padding:0 14px!important;border-radius:3px!important;color:#15243a!important;background:transparent!important;text-decoration:none!important;font-size:14px!important;font-weight:800!important;letter-spacing:.01em;line-height:1.1!important;white-space:nowrap!important;box-shadow:none!important}
.ats-grand-menu>li>a:after{display:none!important}
.ats-grand-menu>li:hover>a,.ats-grand-menu>li.current-menu-item>a,.ats-grand-menu>li.current_page_item>a{background:#d8ab22!important;color:#061b31!important;box-shadow:none!important}
.ats-grand-menu>li.menu-item-has-children>a:before{content:"▾";order:2;margin-left:7px;font-size:11px;color:currentColor;line-height:1}
.ats-grand-menu .sub-menu{position:absolute;left:0;top:100%;min-width:215px;background:#fff;list-style:none;margin:0!important;padding:8px 0!important;border:1px solid #eee3cf;border-top:3px solid #d8ab22;box-shadow:0 18px 46px rgba(10,31,51,.14);border-radius:0 0 12px 12px;opacity:0;visibility:hidden;transform:translateY(8px);transition:.18s ease;z-index:10000}
.ats-grand-menu>li:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0)}
.ats-grand-menu .sub-menu li{list-style:none;margin:0!important;padding:0!important}
.ats-grand-menu .sub-menu a{display:block!important;padding:11px 16px!important;color:#15243a!important;background:#fff!important;text-decoration:none!important;font-size:14px!important;font-weight:700!important;white-space:nowrap!important;border-radius:0!important}
.ats-grand-menu .sub-menu a:hover{background:#fff7df!important;color:#ad7b12!important}
.ats-grand-menu .ats-menu-book>a{background:#07192c!important;color:#fff!important;border-radius:3px!important;margin-left:6px;box-shadow:0 12px 25px rgba(7,25,44,.18)!important}
.ats-grand-menu .ats-menu-book:hover>a,.ats-grand-menu .ats-menu-book.current-menu-item>a{background:#d8ab22!important;color:#07192c!important}
.ats-grand-actions{margin-left:0!important}
.ats-grand-actions .ats-call-pill{border-radius:3px!important;background:#fff!important;border:1px solid #e3d6bd!important;color:#07192c!important;height:48px;padding:0 18px!important;box-shadow:none!important}
.ats-header-booking-bar{background:linear-gradient(180deg,#fff7e4,#fffdf8);border-bottom:1px solid #eadcc1;padding:14px 0;box-shadow:0 10px 24px rgba(10,31,51,.06)}
.ats-mini-booking-form{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr .9fr .75fr 1fr auto;gap:12px;align-items:end}
.ats-mini-booking-title{display:flex;flex-direction:column;justify-content:center;min-height:54px;border-left:4px solid #d8ab22;padding-left:14px;color:#07192c}
.ats-mini-booking-title strong{font-family:Georgia,'Times New Roman',serif;font-size:22px;line-height:1.1}
.ats-mini-booking-title span{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:#a66f0e;font-weight:900;margin-top:4px}
.ats-mini-booking-form .ats-field label{font-size:10px;margin-bottom:6px;letter-spacing:.12em;color:#a66f0e}
.ats-mini-booking-form .ats-field input,.ats-mini-booking-form .ats-field select{border-radius:4px!important;background:#fff!important;border:1px solid #e0d3bc!important;min-height:50px;padding:10px 12px!important;font-size:14px!important}
.ats-mini-booking-form .ats-btn{border-radius:4px!important;min-height:50px;padding:0 18px!important;white-space:nowrap!important}
.ats-booking-panel{display:none!important}
.ats-page-hero{margin-top:0!important}
.ats-availability-form{display:grid;grid-template-columns:1fr 1fr;gap:16px;background:#fff;padding:22px;border:1px solid #ebdfcc;border-radius:18px;box-shadow:0 12px 35px rgba(10,31,51,.08)}
.ats-availability-form .ats-field-full{grid-column:1/-1}
.ats-availability-form .ats-field input,.ats-availability-form .ats-field select,.ats-availability-form .ats-field textarea{border-radius:5px!important;background:#fff!important;border:1px solid #e0d3bc!important;color:#07192c!important}
.ats-availability-form .ats-btn{border-radius:5px!important}
@media (max-width:1180px){
  .ats-grand-nav-inner{gap:14px}.ats-brand-v10{min-width:178px;max-width:190px}.ats-brand-v10 img.ats-brand-logo{max-height:78px!important;max-width:170px!important}.ats-grand-menu>li>a{padding:0 10px!important;font-size:13px!important}.ats-grand-actions{display:none!important}.ats-mini-booking-form{grid-template-columns:1fr 1fr 1fr}.ats-mini-booking-title,.ats-mini-booking-form .ats-btn{grid-column:1/-1}
}
@media (max-width:991px){
  body.admin-bar .ats-header-v10{top:46px}.ats-grand-topbar .ats-container{height:auto;padding-top:9px;padding-bottom:9px;align-items:flex-start}.ats-grand-topbar .ats-container,.ats-topbar-right{flex-direction:column;gap:6px;align-items:flex-start}.ats-grand-nav-inner{min-height:76px}.ats-mobile-toggle{display:flex!important;margin-left:auto}.ats-brand-v10{min-width:150px;max-width:170px}.ats-brand-v10 img.ats-brand-logo{max-height:68px!important;max-width:150px!important}.ats-grand-nav{position:absolute!important;left:14px!important;right:14px!important;top:100%!important;display:none!important;background:#fff!important;border:1px solid #ede0c8!important;border-radius:0 0 16px 16px!important;box-shadow:0 18px 40px rgba(10,31,51,.16)!important;padding:8px!important}.ats-header.is-open .ats-grand-nav{display:block!important}.ats-grand-menu{display:block!important}.ats-grand-menu>li>a{height:auto!important;display:block!important;padding:14px 16px!important}.ats-grand-menu .sub-menu{position:static!important;opacity:1!important;visibility:visible!important;transform:none!important;box-shadow:none!important;border:0!important;border-left:3px solid #d8ab22;border-radius:0!important;margin:0 0 6px 12px!important;background:#fff7e4!important}.ats-grand-menu .sub-menu a{background:transparent!important}.ats-grand-menu .ats-menu-book>a{margin-left:0!important}.ats-header-booking-bar{padding:12px 0}.ats-mini-booking-form{grid-template-columns:1fr 1fr;gap:10px}.ats-mini-booking-title{grid-column:1/-1;min-height:auto}.ats-mini-booking-form .ats-btn{grid-column:1/-1}.ats-availability-form{grid-template-columns:1fr;padding:18px}.ats-availability-form .ats-field-full{grid-column:auto}
}
@media (max-width:520px){
  .ats-brand-v10{min-width:120px;max-width:138px}.ats-brand-v10 img.ats-brand-logo{max-height:58px!important;max-width:132px!important}.ats-mini-booking-form{grid-template-columns:1fr}.ats-mini-booking-title strong{font-size:20px}.ats-grand-topbar{font-size:12px}.ats-topbar-right span{white-space:normal}.ats-header-booking-bar{position:relative}.ats-mainnav .ats-container{padding-left:14px;padding-right:14px}
}

/* ATS V11: professional Pakistan hotel style - clean menu, balanced logo, booking lower */
body.admin-bar .ats-header-v11{top:32px}
.ats-header-v11{position:sticky;top:0;z-index:9999;background:#fff;box-shadow:0 8px 24px rgba(10,31,51,.08)}
.ats-pro-topbar{background:#07192c!important;color:#f5f7fb!important;font-size:13px!important;border-bottom:1px solid rgba(255,255,255,.08)}
.ats-pro-topbar .ats-container{height:38px!important;max-width:1220px!important;padding:0!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:20px!important}
.ats-pro-topbar span{margin:0!important;display:inline-flex!important;align-items:center!important;gap:6px!important;white-space:nowrap!important}
.ats-pro-topbar a{color:#fff!important;text-decoration:none!important;font-weight:700!important}
.ats-pro-mainnav{background:#fff!important;border-bottom:1px solid #f0e6d3!important}
.ats-pro-nav-inner{max-width:1220px!important;min-height:92px!important;display:flex!important;align-items:center!important;gap:24px!important;justify-content:space-between!important}
.ats-brand-v11{display:flex!important;align-items:center!important;gap:16px!important;min-width:300px!important;max-width:360px!important;padding:10px 0!important;color:#07192c!important;text-decoration:none!important;line-height:1!important}
.ats-brand-v11 .ats-brand-logo-wrap{width:112px!important;height:78px!important;flex:0 0 112px!important;display:flex!important;align-items:center!important;justify-content:center!important;line-height:0!important}
.ats-brand-v11 img.ats-brand-logo{width:auto!important;height:auto!important;max-width:112px!important;max-height:78px!important;object-fit:contain!important;display:block!important;filter:drop-shadow(0 5px 10px rgba(201,154,61,.2))!important}
.ats-brand-v11 .ats-brand-copy{display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:flex-start!important;margin:0!important;padding:0!important;position:static!important;top:auto!important;line-height:1!important;transform:translateY(2px)!important}
.ats-brand-v11 .ats-brand-copy strong{font-family:Georgia,'Times New Roman',serif!important;font-size:34px!important;letter-spacing:.02em!important;color:#07192c!important;line-height:1!important;margin:0!important;font-weight:900!important;white-space:nowrap!important}
.ats-brand-v11 .ats-brand-copy small{display:block!important;color:#c99a3d!important;text-transform:uppercase!important;letter-spacing:.2em!important;font-size:11px!important;font-weight:900!important;margin-top:8px!important;line-height:1!important;white-space:nowrap!important}
.ats-pro-nav{margin-left:auto!important;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;padding:0!important;display:flex!important;align-items:center!important;overflow:visible!important;flex:1 1 auto!important;justify-content:flex-end!important}
.ats-pro-menu{display:flex!important;align-items:center!important;gap:0!important;margin:0!important;padding:0!important;list-style:none!important;float:none!important;justify-content:flex-end!important;flex-wrap:nowrap!important}
.ats-pro-menu>li{position:relative!important;list-style:none!important;float:none!important;margin:0!important;padding:0!important}
.ats-pro-menu>li>a{height:auto!important;display:flex!important;align-items:center!important;padding:32px 10px!important;margin:0!important;border-radius:0!important;border:0!important;background:transparent!important;box-shadow:none!important;color:#111b2e!important;text-decoration:none!important;font-size:13px!important;line-height:1.1!important;font-weight:900!important;letter-spacing:.015em!important;white-space:nowrap!important;position:relative!important;text-transform:none!important}
.ats-pro-menu>li>a:after{content:""!important;display:block!important;position:absolute!important;left:10px!important;right:10px!important;bottom:24px!important;height:2px!important;background:#c99a3d!important;opacity:0!important;transform:scaleX(.35)!important;transition:.18s ease!important}
.ats-pro-menu>li:hover>a,.ats-pro-menu>li.current-menu-item>a,.ats-pro-menu>li.current_page_item>a{background:transparent!important;color:#b17c18!important;box-shadow:none!important}
.ats-pro-menu>li:hover>a:after,.ats-pro-menu>li.current-menu-item>a:after,.ats-pro-menu>li.current_page_item>a:after{opacity:1!important;transform:scaleX(1)!important}
.ats-pro-menu>li.menu-item-has-children>a:before{content:"▾"!important;order:2!important;margin-left:6px!important;font-size:10px!important;color:currentColor!important;line-height:1!important}
.ats-pro-menu .sub-menu{position:absolute!important;left:0!important;top:100%!important;min-width:230px!important;background:#fff!important;list-style:none!important;margin:0!important;padding:10px 0!important;border:1px solid #efe2cd!important;border-top:3px solid #c99a3d!important;box-shadow:0 20px 52px rgba(10,31,51,.15)!important;border-radius:0 0 14px 14px!important;opacity:0!important;visibility:hidden!important;transform:translateY(10px)!important;transition:.18s ease!important;z-index:10000!important}
.ats-pro-menu>li:hover>.sub-menu{opacity:1!important;visibility:visible!important;transform:translateY(0)!important}
.ats-pro-menu .sub-menu li{list-style:none!important;margin:0!important;padding:0!important}
.ats-pro-menu .sub-menu a{display:block!important;padding:12px 18px!important;color:#142133!important;background:#fff!important;text-decoration:none!important;font-size:14px!important;font-weight:700!important;white-space:nowrap!important;border-radius:0!important;line-height:1.2!important}
.ats-pro-menu .sub-menu a:hover{background:#fff7e4!important;color:#a87213!important}
.ats-pro-actions{display:flex!important;align-items:center!important;gap:10px!important;margin-left:8px!important;flex:0 0 auto!important}
.ats-call-link,.ats-book-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:44px!important;border-radius:3px!important;padding:0 17px!important;text-decoration:none!important;font-size:13px!important;font-weight:900!important;white-space:nowrap!important;letter-spacing:.02em!important}
.ats-call-link{color:#07192c!important;border:1px solid #e4d6bd!important;background:#fff!important}
.ats-book-link{color:#fff!important;background:#07192c!important;border:1px solid #07192c!important;box-shadow:0 12px 26px rgba(7,25,44,.2)!important}
.ats-book-link:hover{background:#c99a3d!important;border-color:#c99a3d!important;color:#07192c!important}
.ats-header-booking-bar{display:none!important}
.ats-booking-panel,.ats-booking-panel-v11{display:block!important;position:relative!important;z-index:3!important;margin-top:0!important;padding:38px 0 34px!important;background:linear-gradient(180deg,#fffaf0 0%, #fff 100%)!important;border-bottom:1px solid #f0e5d4!important}
.ats-booking-heading{display:grid!important;grid-template-columns:minmax(220px,.7fr) minmax(0,1fr)!important;gap:10px 28px!important;align-items:end!important;margin:0 0 20px!important}
.ats-booking-heading .ats-eyebrow{margin:0!important;align-self:start!important}
.ats-booking-heading h2{font-family:Georgia,'Times New Roman',serif!important;color:#07192c!important;margin:0!important;font-size:clamp(28px,3vw,42px)!important;line-height:1.08!important}
.ats-booking-heading p{grid-column:2!important;margin:0!important;color:#607080!important;font-size:16px!important;line-height:1.6!important;max-width:760px!important}
.ats-booking-card-premium,.ats-booking-card{display:grid!important;grid-template-columns:1.15fr .9fr .9fr .75fr auto!important;gap:14px!important;align-items:end!important;background:#fff!important;border:1px solid #eadcc3!important;border-radius:10px!important;box-shadow:0 18px 50px rgba(10,31,51,.10)!important;padding:22px!important;overflow:visible!important}
.ats-booking-card-premium:before{display:none!important}
.ats-booking-card .ats-field label{font-size:10px!important;letter-spacing:.16em!important;color:#9b6a12!important;margin-bottom:8px!important}
.ats-booking-card .ats-field input,.ats-booking-card .ats-field select{border-radius:3px!important;background:#fff!important;border:1px solid #dfd0b7!important;min-height:50px!important;padding:10px 12px!important;color:#07192c!important;font-size:14px!important}
.ats-booking-card .ats-btn{border-radius:3px!important;min-height:50px!important;white-space:nowrap!important;box-shadow:none!important;background:#07192c!important;color:#fff!important}
.ats-hero{min-height:625px!important}
.ats-hero-inner{padding:70px 0 82px!important}
.ats-hero:after{height:80px!important;background:linear-gradient(0deg,#fffaf0,rgba(255,255,255,0))!important}

@media (max-width:1220px){
  .ats-brand-v11{min-width:250px!important;max-width:280px!important;gap:12px!important}.ats-brand-v11 .ats-brand-logo-wrap{width:90px!important;flex-basis:90px!important;height:66px!important}.ats-brand-v11 img.ats-brand-logo{max-width:90px!important;max-height:66px!important}.ats-brand-v11 .ats-brand-copy strong{font-size:28px!important}.ats-brand-v11 .ats-brand-copy small{font-size:9px!important;letter-spacing:.16em!important}.ats-pro-menu>li>a{font-size:12px!important;padding-left:7px!important;padding-right:7px!important}.ats-call-link{display:none!important}
}
@media (max-width:991px){
  body.admin-bar .ats-header-v11{top:46px}.ats-pro-topbar .ats-container{height:auto!important;padding:8px 0!important;display:block!important;line-height:1.8!important;text-align:left!important}.ats-pro-topbar .ats-topbar-right{display:flex!important;justify-content:flex-start!important;gap:12px!important;flex-wrap:wrap!important}.ats-pro-nav-inner{min-height:76px!important;gap:10px!important}.ats-brand-v11{min-width:auto!important;max-width:245px!important}.ats-brand-v11 .ats-brand-logo-wrap{width:78px!important;flex-basis:78px!important;height:58px!important}.ats-brand-v11 img.ats-brand-logo{max-width:78px!important;max-height:58px!important}.ats-brand-v11 .ats-brand-copy strong{font-size:24px!important}.ats-brand-v11 .ats-brand-copy small{font-size:8px!important}.ats-mobile-toggle{display:flex!important;margin-left:auto!important}.ats-pro-nav{position:absolute!important;left:14px!important;right:14px!important;top:100%!important;display:none!important;background:#fff!important;border:1px solid #eadcc4!important;border-radius:0 0 16px 16px!important;box-shadow:0 20px 50px rgba(10,31,51,.18)!important;padding:10px!important;z-index:10001!important}.ats-header.is-open .ats-pro-nav{display:block!important}.ats-pro-menu{display:block!important;width:100%!important}.ats-pro-menu>li>a{display:block!important;padding:13px 15px!important}.ats-pro-menu>li>a:after{display:none!important}.ats-pro-menu .sub-menu{position:static!important;opacity:1!important;visibility:visible!important;transform:none!important;box-shadow:none!important;border:0!important;border-left:3px solid #c99a3d!important;border-radius:0!important;margin:0 0 6px 12px!important;background:#fff7e8!important}.ats-pro-menu .sub-menu a{background:transparent!important}.ats-pro-actions{margin-left:0!important}.ats-book-link{padding:0 14px!important}.ats-booking-heading{display:block!important}.ats-booking-heading h2{margin-top:8px!important}.ats-booking-heading p{margin-top:8px!important}.ats-booking-card-premium,.ats-booking-card{grid-template-columns:1fr 1fr!important}.ats-booking-card .ats-btn{grid-column:1/-1!important}.ats-hero{min-height:590px!important}
}
@media (max-width:560px){
  .ats-pro-topbar{display:none!important}.ats-brand-v11 .ats-brand-copy{display:flex!important}.ats-brand-v11 .ats-brand-logo-wrap{width:64px!important;flex-basis:64px!important;height:52px!important}.ats-brand-v11 img.ats-brand-logo{max-width:64px!important;max-height:52px!important}.ats-brand-v11 .ats-brand-copy strong{font-size:21px!important}.ats-brand-v11 .ats-brand-copy small{font-size:7.5px!important;letter-spacing:.12em!important}.ats-pro-actions{display:none!important}.ats-pro-nav-inner{min-height:68px!important}.ats-booking-card-premium,.ats-booking-card{grid-template-columns:1fr!important;padding:18px!important}.ats-booking-panel-v11{padding:28px 0!important}.ats-hero{min-height:560px!important}.ats-hero-inner{padding:55px 0 65px!important}.ats-hero h1{font-size:38px!important}.ats-hero-stats{grid-template-columns:1fr!important}
}


/* ATS V12: premium clean menu, corrected logo, and visible booking form */
.ats-header-v12{position:sticky!important;top:0!important;z-index:99999!important;background:#fff!important;box-shadow:0 8px 28px rgba(7,25,44,.08)!important;}
body.admin-bar .ats-header-v12{top:32px!important;}
.ats-header-v12 .ats-pro-topbar{background:#07192c!important;color:#fff!important;border:0!important;}
.ats-header-v12 .ats-pro-topbar .ats-container{height:36px!important;max-width:1180px!important;font-size:12px!important;}
.ats-header-v12 .ats-pro-topbar a{color:#fff!important;text-decoration:none!important;font-weight:800!important;}
.ats-header-v12 .ats-pro-nav-inner{max-width:1180px!important;min-height:88px!important;display:flex!important;align-items:center!important;gap:24px!important;}
.ats-header-v12 .ats-brand-v12{min-width:155px!important;max-width:175px!important;flex:0 0 175px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;padding:8px 0!important;margin:0!important;gap:0!important;}
.ats-header-v12 .ats-brand-v12 .ats-brand-logo-wrap{width:165px!important;height:72px!important;flex:0 0 165px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;overflow:visible!important;line-height:0!important;}
.ats-header-v12 .ats-brand-v12 img.ats-brand-logo{display:block!important;width:auto!important;height:auto!important;max-width:165px!important;max-height:72px!important;object-fit:contain!important;filter:drop-shadow(0 5px 12px rgba(201,154,61,.18))!important;}
.ats-header-v12 .ats-brand-copy{display:none!important;}

/* make menu look like a professional hotel website, not tabs */
.ats-header-v12 .ats-pro-nav{margin-left:auto!important;flex:1 1 auto!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;padding:0!important;overflow:visible!important;}
.ats-header-v12 .ats-clean-menu,
.ats-header-v12 .ats-pro-menu,
.ats-header-v12 .ats-nav .navbar-nav{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:22px!important;margin:0!important;padding:0!important;list-style:none!important;flex-wrap:nowrap!important;float:none!important;}
.ats-header-v12 .ats-clean-menu>li,
.ats-header-v12 .ats-pro-menu>li{position:relative!important;margin:0!important;padding:0!important;float:none!important;list-style:none!important;}
.ats-header-v12 .ats-clean-menu>li>a,
.ats-header-v12 .ats-pro-menu>li>a,
.ats-header-v12 .ats-nav .navbar-nav>li>a{height:88px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;padding:0!important;margin:0!important;border:0!important;border-radius:0!important;background:transparent!important;background-image:none!important;box-shadow:none!important;color:#111827!important;text-decoration:none!important;font-size:13px!important;line-height:1!important;font-weight:800!important;letter-spacing:.02em!important;white-space:nowrap!important;text-transform:none!important;position:relative!important;}
.ats-header-v12 .ats-clean-menu>li>a:after,
.ats-header-v12 .ats-pro-menu>li>a:after{content:""!important;display:block!important;position:absolute!important;left:0!important;right:0!important;bottom:25px!important;height:2px!important;background:#c99a3d!important;opacity:0!important;transform:scaleX(.35)!important;transition:all .18s ease!important;}
.ats-header-v12 .ats-clean-menu>li:hover>a,
.ats-header-v12 .ats-clean-menu>li.current-menu-item>a,
.ats-header-v12 .ats-clean-menu>li.current_page_item>a,
.ats-header-v12 .ats-clean-menu>li.current_page_parent>a,
.ats-header-v12 .ats-pro-menu>li:hover>a,
.ats-header-v12 .ats-pro-menu>li.current-menu-item>a,
.ats-header-v12 .ats-pro-menu>li.current_page_item>a,
.ats-header-v12 .ats-nav .navbar-nav>.active>a,
.ats-header-v12 .ats-nav .navbar-nav>.current-menu-item>a,
.ats-header-v12 .ats-nav .navbar-nav>.current_page_item>a{background:transparent!important;background-image:none!important;color:#b78217!important;box-shadow:none!important;border:0!important;}
.ats-header-v12 .ats-clean-menu>li:hover>a:after,
.ats-header-v12 .ats-clean-menu>li.current-menu-item>a:after,
.ats-header-v12 .ats-clean-menu>li.current_page_item>a:after,
.ats-header-v12 .ats-clean-menu>li.current_page_parent>a:after,
.ats-header-v12 .ats-pro-menu>li:hover>a:after,
.ats-header-v12 .ats-pro-menu>li.current-menu-item>a:after,
.ats-header-v12 .ats-pro-menu>li.current_page_item>a:after{opacity:1!important;transform:scaleX(1)!important;}
.ats-header-v12 .ats-clean-menu>li.menu-item-has-children>a:before,
.ats-header-v12 .ats-pro-menu>li.menu-item-has-children>a:before{content:"▾"!important;order:2!important;margin-left:6px!important;font-size:10px!important;color:currentColor!important;line-height:1!important;}
.ats-header-v12 .ats-pro-menu .sub-menu{position:absolute!important;left:0!important;top:100%!important;min-width:230px!important;background:#fff!important;list-style:none!important;margin:0!important;padding:10px 0!important;border:1px solid #eadcc4!important;border-top:3px solid #c99a3d!important;box-shadow:0 18px 45px rgba(7,25,44,.15)!important;border-radius:0 0 12px 12px!important;opacity:0!important;visibility:hidden!important;transform:translateY(8px)!important;transition:.18s ease!important;z-index:100000!important;}
.ats-header-v12 .ats-pro-menu>li:hover>.sub-menu{opacity:1!important;visibility:visible!important;transform:translateY(0)!important;}
.ats-header-v12 .ats-pro-menu .sub-menu a{display:block!important;height:auto!important;padding:12px 18px!important;border:0!important;border-radius:0!important;background:#fff!important;color:#142133!important;font-size:14px!important;font-weight:700!important;line-height:1.25!important;text-decoration:none!important;white-space:nowrap!important;box-shadow:none!important;}
.ats-header-v12 .ats-pro-menu .sub-menu a:hover{background:#fff7e6!important;color:#b78217!important;}
.ats-header-v12 .ats-pro-actions{display:flex!important;align-items:center!important;gap:10px!important;flex:0 0 auto!important;margin-left:16px!important;}
.ats-header-v12 .ats-call-link,
.ats-header-v12 .ats-book-link{min-height:42px!important;border-radius:2px!important;padding:0 17px!important;font-weight:900!important;font-size:13px!important;text-decoration:none!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;white-space:nowrap!important;box-shadow:none!important;}
.ats-header-v12 .ats-call-link{background:#fff!important;color:#07192c!important;border:1px solid #d9c7aa!important;}
.ats-header-v12 .ats-book-link{background:#07192c!important;color:#fff!important;border:1px solid #07192c!important;}
.ats-header-v12 .ats-book-link:hover{background:#c99a3d!important;border-color:#c99a3d!important;color:#07192c!important;}

/* put booking form in a professional position under the hero, not under menu */
.ats-header-booking-bar{display:none!important;}
.ats-hero{min-height:540px!important;}
.ats-hero-inner{padding:68px 0 112px!important;}
.ats-hero h1{font-size:clamp(44px,5vw,72px)!important;line-height:.98!important;max-width:720px!important;}
.ats-booking-panel,.ats-booking-panel-v11{display:block!important;position:relative!important;z-index:8!important;margin-top:-64px!important;padding:0 0 42px!important;background:transparent!important;border:0!important;}
.ats-booking-heading{display:none!important;}
.ats-booking-card-premium,.ats-booking-card{display:grid!important;grid-template-columns:1.15fr .9fr .9fr .75fr auto!important;gap:14px!important;align-items:end!important;background:rgba(255,255,255,.97)!important;border:1px solid #eadcc3!important;border-radius:14px!important;box-shadow:0 22px 60px rgba(7,25,44,.18)!important;padding:22px!important;overflow:visible!important;backdrop-filter:blur(8px)!important;}
.ats-booking-card-premium:before{display:none!important;}
.ats-booking-card .ats-field label{font-size:10px!important;letter-spacing:.16em!important;text-transform:uppercase!important;color:#9b6a12!important;margin-bottom:8px!important;font-weight:900!important;}
.ats-booking-card .ats-field input,.ats-booking-card .ats-field select{border-radius:3px!important;background:#fff!important;border:1px solid #dfd0b7!important;min-height:50px!important;padding:10px 12px!important;color:#07192c!important;font-size:14px!important;}
.ats-booking-card .ats-btn{border-radius:3px!important;min-height:50px!important;white-space:nowrap!important;box-shadow:none!important;background:#07192c!important;color:#fff!important;padding:0 22px!important;}

@media (max-width:1220px){
  .ats-header-v12 .ats-pro-nav-inner{gap:14px!important;}
  .ats-header-v12 .ats-brand-v12{flex-basis:145px!important;max-width:145px!important;min-width:145px!important;}
  .ats-header-v12 .ats-brand-v12 .ats-brand-logo-wrap{width:140px!important;flex-basis:140px!important;}
  .ats-header-v12 .ats-brand-v12 img.ats-brand-logo{max-width:140px!important;}
  .ats-header-v12 .ats-clean-menu,.ats-header-v12 .ats-pro-menu{gap:14px!important;}
  .ats-header-v12 .ats-clean-menu>li>a,.ats-header-v12 .ats-pro-menu>li>a{font-size:12.5px!important;}
  .ats-header-v12 .ats-call-link{display:none!important;}
}
@media (max-width:991px){
  body.admin-bar .ats-header-v12{top:46px!important;}
  .ats-header-v12 .ats-pro-topbar .ats-container{height:auto!important;padding:8px 0!important;display:block!important;line-height:1.7!important;text-align:left!important;}
  .ats-header-v12 .ats-pro-topbar .ats-topbar-right{display:flex!important;justify-content:flex-start!important;gap:12px!important;flex-wrap:wrap!important;}
  .ats-header-v12 .ats-pro-nav-inner{min-height:74px!important;}
  .ats-header-v12 .ats-brand-v12{flex-basis:130px!important;min-width:130px!important;max-width:130px!important;}
  .ats-header-v12 .ats-brand-v12 .ats-brand-logo-wrap{width:126px!important;height:58px!important;flex-basis:126px!important;}
  .ats-header-v12 .ats-brand-v12 img.ats-brand-logo{max-width:126px!important;max-height:58px!important;}
  .ats-mobile-toggle{display:flex!important;margin-left:auto!important;}
  .ats-header-v12 .ats-pro-nav{position:absolute!important;left:14px!important;right:14px!important;top:100%!important;display:none!important;background:#fff!important;border:1px solid #eadcc4!important;border-radius:0 0 16px 16px!important;box-shadow:0 20px 50px rgba(10,31,51,.18)!important;padding:12px!important;z-index:10001!important;}
  .ats-header-v12.is-open .ats-pro-nav,.ats-header.is-open .ats-pro-nav{display:block!important;}
  .ats-header-v12 .ats-clean-menu,.ats-header-v12 .ats-pro-menu{display:block!important;width:100%!important;}
  .ats-header-v12 .ats-clean-menu>li>a,.ats-header-v12 .ats-pro-menu>li>a{height:auto!important;display:block!important;padding:13px 14px!important;}
  .ats-header-v12 .ats-clean-menu>li>a:after,.ats-header-v12 .ats-pro-menu>li>a:after{display:none!important;}
  .ats-header-v12 .ats-pro-menu .sub-menu{position:static!important;opacity:1!important;visibility:visible!important;transform:none!important;box-shadow:none!important;border:0!important;border-left:3px solid #c99a3d!important;border-radius:0!important;margin:0 0 6px 12px!important;background:#fff7e8!important;}
  .ats-header-v12 .ats-pro-menu .sub-menu a{background:transparent!important;}
  .ats-header-v12 .ats-pro-actions{margin-left:0!important;}
  .ats-booking-card-premium,.ats-booking-card{grid-template-columns:1fr 1fr!important;}
  .ats-booking-card .ats-btn{grid-column:1/-1!important;}
  .ats-hero{min-height:560px!important;}
}
@media (max-width:560px){
  .ats-header-v12 .ats-pro-topbar{display:none!important;}
  .ats-header-v12 .ats-pro-actions{display:none!important;}
  .ats-header-v12 .ats-pro-nav-inner{min-height:66px!important;}
  .ats-header-v12 .ats-brand-v12{flex-basis:118px!important;min-width:118px!important;max-width:118px!important;}
  .ats-header-v12 .ats-brand-v12 .ats-brand-logo-wrap{width:116px!important;height:54px!important;flex-basis:116px!important;}
  .ats-header-v12 .ats-brand-v12 img.ats-brand-logo{max-width:116px!important;max-height:54px!important;}
  .ats-hero{min-height:520px!important;}
  .ats-hero-inner{padding:56px 0 90px!important;}
  .ats-hero h1{font-size:36px!important;}
  .ats-hero-stats{grid-template-columns:1fr!important;}
  .ats-booking-panel-v11{margin-top:-35px!important;padding-bottom:30px!important;}
  .ats-booking-card-premium,.ats-booking-card{grid-template-columns:1fr!important;padding:18px!important;}
}

/* ATS V13: Grand Taj style transparent hero header + slider text */
.ats-header-v13{z-index:99999!important;}
.ats-header-v13 .ats-container{max-width:1180px!important;}
.ats-header-v13 .ats-pro-topbar{background:#07192c!important;color:#fff!important;}
.ats-header-v13 .ats-pro-topbar .ats-container{height:36px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;font-size:12px!important;font-weight:800!important;}
.ats-header-v13 .ats-topbar-left,.ats-header-v13 .ats-topbar-right{display:flex!important;align-items:center!important;gap:18px!important;white-space:nowrap!important;}
.ats-header-v13 .ats-location-text{opacity:.92!important;font-weight:700!important;}
.ats-header-v13 .ats-welcome-text{font-weight:900!important;}
.ats-header-v13 .ats-topbar-right span{margin:0!important;}
.ats-header-v13 .ats-topbar a{color:#fff!important;text-decoration:none!important;}
.ats-header-v13 .ats-mainnav{background:#fff!important;border-bottom:1px solid rgba(201,154,61,.16)!important;box-shadow:0 8px 24px rgba(7,25,44,.08)!important;}
.ats-header-v13 .ats-pro-nav-inner{min-height:82px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:26px!important;}
.ats-header-v13 .ats-brand-v12{min-width:130px!important;max-width:145px!important;flex:0 0 145px!important;padding:6px 0!important;margin:0!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;}
.ats-header-v13 .ats-brand-logo-wrap{width:140px!important;height:70px!important;flex:0 0 140px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;overflow:visible!important;}
.ats-header-v13 .ats-brand-logo{max-width:140px!important;max-height:70px!important;width:auto!important;height:auto!important;object-fit:contain!important;display:block!important;filter:drop-shadow(0 6px 14px rgba(0,0,0,.18))!important;}
.ats-header-v13 .ats-pro-nav{margin-left:auto!important;display:flex!important;justify-content:flex-end!important;align-items:center!important;flex:1 1 auto!important;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;padding:0!important;}
.ats-header-v13 .ats-grandtaj-menu{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:30px!important;margin:0!important;padding:0!important;list-style:none!important;float:none!important;background:transparent!important;border:0!important;box-shadow:none!important;}
.ats-header-v13 .ats-grandtaj-menu>li{position:relative!important;float:none!important;margin:0!important;padding:0!important;list-style:none!important;}
.ats-header-v13 .ats-grandtaj-menu>li>a{height:82px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;padding:0!important;margin:0!important;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;text-decoration:none!important;color:#111827!important;font-size:14px!important;font-weight:800!important;letter-spacing:.01em!important;white-space:nowrap!important;line-height:1!important;position:relative!important;}
.ats-header-v13 .ats-grandtaj-menu>li>a:after{content:""!important;position:absolute!important;left:0!important;right:0!important;bottom:23px!important;height:2px!important;background:#d4b06a!important;opacity:0!important;transform:scaleX(.3)!important;transition:all .18s ease!important;display:block!important;}
.ats-header-v13 .ats-grandtaj-menu>li:hover>a,
.ats-header-v13 .ats-grandtaj-menu>li.current-menu-item>a,
.ats-header-v13 .ats-grandtaj-menu>li.current_page_item>a{color:#c99a3d!important;background:transparent!important;box-shadow:none!important;}
.ats-header-v13 .ats-grandtaj-menu>li:hover>a:after,
.ats-header-v13 .ats-grandtaj-menu>li.current-menu-item>a:after,
.ats-header-v13 .ats-grandtaj-menu>li.current_page_item>a:after{opacity:1!important;transform:scaleX(1)!important;}
.ats-header-v13 .ats-grandtaj-menu>li.menu-item-has-children>a:before{content:""!important;display:none!important;}
.ats-header-v13 .ats-grandtaj-menu>li.menu-item-has-children>a:after{right:0!important;}
.ats-header-v13 .ats-grandtaj-menu .sub-menu{position:absolute!important;left:0!important;top:100%!important;min-width:230px!important;background:#fff!important;list-style:none!important;margin:0!important;padding:10px 0!important;border:1px solid rgba(212,176,106,.28)!important;border-top:3px solid #d4b06a!important;box-shadow:0 18px 45px rgba(7,25,44,.16)!important;border-radius:0 0 12px 12px!important;opacity:0!important;visibility:hidden!important;transform:translateY(10px)!important;transition:.18s ease!important;z-index:100000!important;}
.ats-header-v13 .ats-grandtaj-menu>li:hover>.sub-menu{opacity:1!important;visibility:visible!important;transform:translateY(0)!important;}
.ats-header-v13 .ats-grandtaj-menu .sub-menu a{display:block!important;height:auto!important;padding:12px 18px!important;background:#fff!important;color:#111827!important;font-size:14px!important;font-weight:700!important;line-height:1.25!important;text-decoration:none!important;white-space:nowrap!important;border:0!important;border-radius:0!important;box-shadow:none!important;}
.ats-header-v13 .ats-grandtaj-menu .sub-menu a:hover{background:#fff8e8!important;color:#b78217!important;}
.ats-header-v13 .ats-pro-actions{display:flex!important;align-items:center!important;gap:10px!important;flex:0 0 auto!important;margin-left:14px!important;}
.ats-header-v13 .ats-book-link{height:42px!important;min-height:42px!important;border-radius:999px!important;padding:0 22px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;font-size:14px!important;font-weight:900!important;text-decoration:none!important;white-space:nowrap!important;color:#111827!important;background:rgba(255,255,255,.08)!important;border:1px solid rgba(17,24,39,.28)!important;box-shadow:none!important;}
.ats-header-v13 .ats-book-link:hover{background:#d4b06a!important;border-color:#d4b06a!important;color:#07192c!important;}

/* Transparent overlay only for the homepage, matching premium Pakistan hotel style */
.ats-header-v13.ats-header-overlay{position:absolute!important;top:0!important;left:0!important;right:0!important;background:transparent!important;box-shadow:none!important;}
body.admin-bar .ats-header-v13.ats-header-overlay{top:32px!important;}
.ats-header-v13.ats-header-overlay .ats-pro-topbar{background:rgba(0,0,0,.32)!important;backdrop-filter:blur(4px)!important;}
.ats-header-v13.ats-header-overlay .ats-mainnav{background:rgba(0,0,0,.16)!important;border-bottom:1px solid rgba(255,255,255,.13)!important;box-shadow:none!important;backdrop-filter:blur(2px)!important;}
.ats-header-v13.ats-header-overlay .ats-grandtaj-menu>li>a{color:#fff!important;text-shadow:0 2px 8px rgba(0,0,0,.35)!important;}
.ats-header-v13.ats-header-overlay .ats-grandtaj-menu>li:hover>a,
.ats-header-v13.ats-header-overlay .ats-grandtaj-menu>li.current-menu-item>a,
.ats-header-v13.ats-header-overlay .ats-grandtaj-menu>li.current_page_item>a{color:#f0d184!important;}
.ats-header-v13.ats-header-overlay .ats-book-link{color:#fff!important;border-color:rgba(255,255,255,.65)!important;background:rgba(255,255,255,.04)!important;text-shadow:0 2px 8px rgba(0,0,0,.28)!important;}
.ats-header-v13.ats-header-overlay .ats-book-link:hover{background:#fff!important;color:#07192c!important;border-color:#fff!important;text-shadow:none!important;}
.ats-header-v13.ats-header-overlay .ats-brand-logo{filter:drop-shadow(0 8px 16px rgba(0,0,0,.38))!important;}

/* Slider text like Grand Taj sample */
.ats-grandtaj-hero{min-height:690px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:#07192c!important;}
.ats-grandtaj-hero .ats-hero-slide{background-position:center!important;}
.ats-grandtaj-hero:before{background:linear-gradient(180deg,rgba(0,0,0,.30),rgba(0,0,0,.28)),radial-gradient(circle at center,rgba(0,0,0,.06),rgba(0,0,0,.36))!important;z-index:1!important;}
.ats-grandtaj-hero:after{display:none!important;}
.ats-grandtaj-hero-inner{max-width:980px!important;margin:0 auto!important;text-align:center!important;padding:190px 0 80px!important;color:#fff!important;}
.ats-hero-copy-slide{display:none!important;animation:atsFadeUp .75s ease both;}
.ats-hero-copy-slide.is-active{display:block!important;}
.ats-grandtaj-hero h1{font-family:Inter,Arial,Helvetica,sans-serif!important;font-size:clamp(38px,4.3vw,62px)!important;line-height:1.08!important;font-weight:900!important;letter-spacing:-.03em!important;max-width:980px!important;margin:0 auto 14px!important;color:#fff!important;text-shadow:0 8px 30px rgba(0,0,0,.45)!important;}
.ats-grandtaj-hero p{font-size:clamp(18px,1.8vw,24px)!important;line-height:1.45!important;color:#fff!important;font-weight:800!important;max-width:820px!important;margin:0 auto 32px!important;text-shadow:0 6px 22px rgba(0,0,0,.5)!important;}
.ats-grandtaj-actions{justify-content:center!important;align-items:center!important;margin:0!important;gap:18px!important;}
.ats-grandtaj-actions .ats-btn{min-width:180px!important;border-radius:999px!important;padding:16px 34px!important;font-size:16px!important;box-shadow:0 18px 45px rgba(0,0,0,.18)!important;}
.ats-grandtaj-actions .ats-btn-primary{background:#d9bd75!important;color:#fff!important;border:1px solid rgba(255,255,255,.15)!important;}
.ats-grandtaj-actions .ats-btn-outline{background:#fff!important;color:#4a4a4a!important;border:1px solid rgba(255,255,255,.9)!important;}
.ats-grandtaj-actions .ats-btn:hover{transform:translateY(-2px)!important;}
.ats-scroll-down{position:absolute!important;left:50%!important;bottom:34px!important;transform:translateX(-50%)!important;color:#fff!important;text-decoration:none!important;font-size:46px!important;line-height:1!important;text-shadow:0 8px 22px rgba(0,0,0,.45)!important;opacity:.92!important;z-index:4!important;}
.ats-hero-stats{display:none!important;}
@keyframes atsFadeUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}

/* Booking form below the slider, clean white strip */
#ats-booking-panel.ats-booking-panel-v11{margin-top:0!important;padding:28px 0 42px!important;background:#fff!important;border-bottom:1px solid #f0e5d4!important;box-shadow:none!important;}
#ats-booking-panel .ats-booking-heading{display:block!important;margin:0 0 18px!important;text-align:center!important;}
#ats-booking-panel .ats-booking-heading .ats-eyebrow{display:none!important;}
#ats-booking-panel .ats-booking-heading h2{font-family:Inter,Arial,Helvetica,sans-serif!important;font-size:14px!important;color:#6d7884!important;font-weight:700!important;margin:0 0 8px!important;}
#ats-booking-panel .ats-booking-heading h2:before{content:"Required fields are followed by *";}
#ats-booking-panel .ats-booking-heading h2{font-size:0!important;}
#ats-booking-panel .ats-booking-heading h2:before{font-size:13px!important;}
#ats-booking-panel .ats-booking-heading p{display:none!important;}
#ats-booking-panel .ats-booking-card{max-width:860px!important;margin:0 auto!important;grid-template-columns:1fr 1fr 1fr auto!important;border-radius:0!important;border:0!important;box-shadow:none!important;padding:0!important;background:#fff!important;backdrop-filter:none!important;}
#ats-booking-panel .ats-booking-card .ats-field:first-child{display:none!important;}
#ats-booking-panel .ats-booking-card .ats-field label{font-size:13px!important;letter-spacing:0!important;text-transform:none!important;color:#4a4a4a!important;font-weight:700!important;margin-bottom:8px!important;}
#ats-booking-panel .ats-booking-card .ats-field label:after{content:" *";color:#b78217!important;}
#ats-booking-panel .ats-booking-card .ats-field input,
#ats-booking-panel .ats-booking-card .ats-field select{height:58px!important;border-radius:3px!important;border:1px solid #e0d7ca!important;background:#fff!important;font-weight:500!important;color:#4a4a4a!important;}
#ats-booking-panel .ats-booking-card .ats-btn{height:58px!important;border-radius:999px!important;background:#9f9473!important;color:#fff!important;min-width:190px!important;margin-top:22px!important;}
#ats-booking-panel .ats-booking-card .ats-btn:hover{background:#07192c!important;}

@media (max-width:1180px){
  .ats-header-v13 .ats-grandtaj-menu{gap:20px!important;}
  .ats-header-v13 .ats-grandtaj-menu>li>a{font-size:13px!important;}
  .ats-header-v13 .ats-brand-v12{flex-basis:128px!important;max-width:128px!important;min-width:128px!important;}
  .ats-header-v13 .ats-brand-logo-wrap{width:125px!important;flex-basis:125px!important;}
  .ats-header-v13 .ats-brand-logo{max-width:125px!important;}
}
@media (max-width:991px){
  body.admin-bar .ats-header-v13.ats-header-overlay{top:46px!important;}
  .ats-header-v13.ats-header-overlay{position:absolute!important;}
  .ats-header-v13 .ats-pro-topbar .ats-container{height:auto!important;padding:8px 0!important;display:block!important;line-height:1.7!important;}
  .ats-header-v13 .ats-location-text{display:none!important;}
  .ats-header-v13 .ats-topbar-right{justify-content:flex-start!important;flex-wrap:wrap!important;gap:12px!important;}
  .ats-header-v13 .ats-pro-nav-inner{min-height:72px!important;}
  .ats-mobile-toggle{display:flex!important;margin-left:auto!important;background:rgba(7,25,44,.9)!important;color:#fff!important;}
  .ats-header-v13.ats-header-overlay .ats-mobile-toggle{background:rgba(255,255,255,.15)!important;border:1px solid rgba(255,255,255,.35)!important;}
  .ats-header-v13 .ats-pro-nav{position:absolute!important;left:14px!important;right:14px!important;top:100%!important;display:none!important;background:#fff!important;border:1px solid #eadcc4!important;border-radius:0 0 16px 16px!important;box-shadow:0 20px 50px rgba(10,31,51,.18)!important;padding:12px!important;z-index:10001!important;}
  .ats-header-v13.is-open .ats-pro-nav,.ats-header.is-open .ats-pro-nav{display:block!important;}
  .ats-header-v13 .ats-grandtaj-menu{display:block!important;width:100%!important;}
  .ats-header-v13 .ats-grandtaj-menu>li>a{height:auto!important;display:block!important;color:#111827!important;text-shadow:none!important;padding:13px 14px!important;}
  .ats-header-v13 .ats-grandtaj-menu>li>a:after{display:none!important;}
  .ats-header-v13 .ats-grandtaj-menu .sub-menu{position:static!important;opacity:1!important;visibility:visible!important;transform:none!important;box-shadow:none!important;border:0!important;border-left:3px solid #d4b06a!important;border-radius:0!important;margin:0 0 6px 12px!important;background:#fff8e8!important;}
  .ats-header-v13 .ats-pro-actions{margin-left:0!important;}
  .ats-grandtaj-hero{min-height:610px!important;}
  .ats-grandtaj-hero-inner{padding:168px 0 74px!important;}
  #ats-booking-panel .ats-booking-card{grid-template-columns:1fr 1fr!important;max-width:720px!important;}
  #ats-booking-panel .ats-booking-card .ats-btn{grid-column:1/-1!important;margin-top:0!important;width:100%!important;}
}
@media (max-width:560px){
  .ats-header-v13 .ats-pro-topbar{display:none!important;}
  .ats-header-v13 .ats-pro-actions{display:none!important;}
  .ats-header-v13 .ats-pro-nav-inner{min-height:66px!important;}
  .ats-header-v13 .ats-brand-v12{flex-basis:118px!important;min-width:118px!important;max-width:118px!important;}
  .ats-header-v13 .ats-brand-logo-wrap{width:116px!important;height:54px!important;flex-basis:116px!important;}
  .ats-header-v13 .ats-brand-logo{max-width:116px!important;max-height:54px!important;}
  .ats-grandtaj-hero{min-height:560px!important;}
  .ats-grandtaj-hero-inner{padding:120px 0 58px!important;}
  .ats-grandtaj-hero h1{font-size:36px!important;}
  .ats-grandtaj-hero p{font-size:17px!important;margin-bottom:24px!important;}
  .ats-grandtaj-actions{display:grid!important;grid-template-columns:1fr!important;width:min(100%,330px)!important;margin:0 auto!important;}
  .ats-grandtaj-actions .ats-btn{width:100%!important;min-width:0!important;}
  .ats-scroll-down{display:none!important;}
  #ats-booking-panel{padding:24px 0 34px!important;}
  #ats-booking-panel .ats-booking-card{grid-template-columns:1fr!important;padding:0 8px!important;}
  #ats-booking-panel .ats-booking-card .ats-field:first-child{display:block!important;}
  #ats-booking-panel .ats-booking-card .ats-btn{margin-top:0!important;}
}

/* ATS V14: remove cloudy/white-looking logo back on transparent hero header */
.ats-header-v13.ats-header-overlay .ats-mainnav{
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  background:rgba(0,0,0,.20)!important;
}
.ats-header-v13 .ats-brand-logo-wrap,
.ats-header-v13.ats-header-overlay .ats-brand-logo-wrap{
  background:transparent!important;
  box-shadow:none!important;
  border:0!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  overflow:visible!important;
  isolation:isolate!important;
}
.ats-header-v13 .ats-brand-logo-wrap:before,
.ats-header-v13 .ats-brand-logo-wrap:after{
  content:none!important;
  display:none!important;
}
.ats-header-v13.ats-header-overlay .ats-brand-logo{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  filter:drop-shadow(0 5px 10px rgba(0,0,0,.42))!important;
}
