/*==================================================
TEAM BUILDING BALI
Premium Services CSS
Version 1.0
==================================================*/

:root{

--primary:#00B8FF;
--secondary:#FF8C00;
--accent:#FFD54A;
--dark:#062B45;
--light:#F8FBFF;
--white:#ffffff;
--gray:#6B7280;
--border:#E8EEF5;

--radius:24px;

--shadow-sm:0 10px 25px rgba(0,0,0,.08);

--shadow-md:0 18px 45px rgba(0,0,0,.12);

--shadow-lg:0 25px 60px rgba(0,0,0,.18);

--gradient:linear-gradient(135deg,#00B8FF 0%,#0095FF 40%,#FF8C00 100%);

--transition:.35s ease;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

font-size:16px;

color:#444;

background:#fff;

overflow-x:hidden;

line-height:1.8;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

padding:0;

margin:0;

list-style:none;

}

section{

position:relative;

padding:90px 0;

}

.container{

max-width:1320px;

}

::selection{

background:var(--primary);

color:#fff;

}

/*==================================================
TYPOGRAPHY
==================================================*/

.section-badge{

display:inline-block;

background:#EAF8FF;

color:var(--primary);

padding:10px 24px;

border-radius:50px;

font-size:14px;

font-weight:700;

letter-spacing:.5px;

text-transform:uppercase;

}

.section-title{

font-size:48px;

font-weight:800;

line-height:1.2;

color:var(--dark);

margin-top:18px;

margin-bottom:20px;

}

.section-description{

max-width:760px;

margin:auto;

font-size:18px;

color:var(--gray);

line-height:1.9;

}

@media(max-width:991px){

.section-title{

font-size:36px;

}

.section-description{

font-size:16px;

}

}

@media(max-width:576px){

.section-title{

font-size:30px;

}

}

/*==================================================
BUTTONS
==================================================*/

.btn{

border-radius:50px;

font-weight:700;

padding:14px 34px;

transition:var(--transition);

}

.btn-warning{

background:linear-gradient(135deg,#FFD54A,#FF8C00);

border:none;

color:#fff;

box-shadow:var(--shadow-sm);

}

.btn-warning:hover{

transform:translateY(-4px);

box-shadow:var(--shadow-lg);

background:linear-gradient(135deg,#FF8C00,#FFD54A);

color:#fff;

}

.btn-outline-light{

border:2px solid #fff;

}

.btn-outline-light:hover{

background:#fff;

color:var(--dark);

}

/*==================================================
TOP BAR
==================================================*/

.topbar{

background:#031D33;

color:#fff;

font-size:14px;

padding:10px 0;

}

.topbar i{

color:#FFD54A;

margin-right:6px;

}

.topbar .text-end{

font-weight:600;

color:#FFD54A;

}

@media(max-width:768px){

.topbar{

display:none;

}

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

padding:18px 0;

background:rgba(255,255,255,.92);

backdrop-filter:blur(18px);

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.4s;

z-index:999;

}

.navbar-brand img{

height:58px;

}

.nav-link{

font-weight:600;

color:#222;

margin-left:18px;

position:relative;

}

.nav-link:hover{

color:var(--primary);

}

.nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:var(--secondary);

transition:.3s;

border-radius:50px;

}

.nav-link:hover::after{

width:100%;

}

.dropdown-menu{

border:none;

border-radius:18px;

box-shadow:var(--shadow-md);

padding:14px;

}

.dropdown-item{

padding:10px 18px;

border-radius:12px;

font-weight:500;

}

.dropdown-item:hover{

background:#F4FAFF;

color:var(--primary);

}

/*==================================================
HERO
==================================================*/

.hero{

background:url('/assets/images/hero-team-building-bali.webp');

background-size:cover;

background-position:center;

position:relative;

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

}

.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(
135deg,
rgba(0,52,89,.82),
rgba(0,140,255,.60),
rgba(255,140,0,.42));

}

.hero .container{

position:relative;

z-index:2;

}

.hero-badge{

display:inline-flex;

align-items:center;

padding:12px 22px;

border-radius:50px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(18px);

color:#fff;

font-weight:600;

font-size:15px;

}

.hero-title{

font-size:68px;

font-weight:800;

color:#fff;

line-height:1.1;

margin:30px 0;

}

.hero-title span{

display:block;

color:#FFD54A;

}

.hero-description{

font-size:20px;

line-height:1.9;

color:#F4F4F4;

max-width:700px;

margin-bottom:35px;

}

.hero-rating{

display:flex;

align-items:center;

gap:10px;

margin-bottom:30px;

font-size:18px;

color:#FFD54A;

}

.hero-rating span{

color:#fff;

font-size:16px;

}

.hero-buttons{

display:flex;

gap:16px;

flex-wrap:wrap;

margin-top:25px;

}

.hero-image{

animation:float 4s ease-in-out infinite;

filter:drop-shadow(0 30px 60px rgba(0,0,0,.25));

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/*==================================================
HERO STATISTICS
==================================================*/

.hero-stats{

margin-top:-70px;

position:relative;

z-index:10;

}

.stat-box{

background:#fff;

padding:35px 25px;

border-radius:24px;

text-align:center;

box-shadow:var(--shadow-md);

transition:var(--transition);

height:100%;

}

.stat-box:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.stat-box h2{

font-size:42px;

font-weight:800;

color:var(--primary);

margin-bottom:8px;

}

.stat-box p{

margin:0;

color:#666;

font-weight:500;

}

/*==================================================
TRUSTED COMPANY
==================================================*/

.trusted-section{

background:#fff;

}

.client-logo{

max-width:160px;

margin:auto;

opacity:.65;

filter:grayscale(100%);

transition:.35s ease;

}

.client-logo:hover{

opacity:1;

filter:none;

transform:scale(1.08);

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-section{

background:#F8FBFF;

}

.feature-card{

background:#fff;

padding:40px 30px;

border-radius:28px;

text-align:center;

height:100%;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #eef4f9;

}

.feature-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.feature-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

background:linear-gradient(135deg,#00B8FF,#0095FF);

color:#fff;

margin-bottom:25px;

box-shadow:0 15px 30px rgba(0,184,255,.25);

}

.feature-card h4{

font-size:24px;

font-weight:700;

margin-bottom:15px;

color:#062B45;

}

.feature-card p{

color:#6b7280;

font-size:15px;

line-height:1.8;

}

/*==================================================
PROGRAM SELECTOR
==================================================*/

.program-selector{

background:#fff;

}

.selector-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:24px;

height:100%;

border:1px solid #edf2f7;

transition:.35s;

cursor:pointer;

}

.selector-card:hover{

background:#00B8FF;

color:#fff;

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(0,184,255,.25);

}

.selector-card i{

font-size:48px;

margin-bottom:20px;

color:#FF8C00;

transition:.35s;

}

.selector-card:hover i{

color:#FFD54A;

}

.selector-card h4{

font-size:22px;

font-weight:700;

margin-bottom:12px;

}

.selector-card p{

font-size:15px;

line-height:1.8;

margin-bottom:0;

}

/*==================================================
FEATURED PROGRAMS
==================================================*/

.featured-programs{

background:#f7fbff;

}

.featured-card{

background:#fff;

border-radius:30px;

overflow:hidden;

position:relative;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.featured-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 70px rgba(0,0,0,.16);

}

.featured-card img{

width:100%;

height:270px;

object-fit:cover;

transition:.4s;

}

.featured-card:hover img{

transform:scale(1.08);

}

.featured-badge{

position:absolute;

top:18px;

left:18px;

background:#FF8C00;

color:#fff;

padding:8px 16px;

border-radius:50px;

font-size:13px;

font-weight:700;

z-index:10;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.featured-content{

padding:30px;

}

.featured-content h3{

font-size:28px;

font-weight:800;

color:#062B45;

margin:15px 0;

}

.featured-content p{

color:#6b7280;

line-height:1.8;

margin-bottom:20px;

}

.featured-meta{

display:flex;

justify-content:space-between;

margin:20px 0;

font-size:14px;

color:#666;

}

.service-rating{

color:#ffb400;

font-size:15px;

font-weight:700;

}

.price-tag{

display:inline-block;

margin-top:10px;

padding:12px 22px;

background:linear-gradient(135deg,#FFD54A,#FF8C00);

color:#fff;

font-weight:700;

border-radius:50px;

box-shadow:0 12px 24px rgba(255,140,0,.25);

}

/*==================================================
PROGRAM NAVIGATION
==================================================*/

.program-navigation{

background:#fff;

position:sticky;

top:82px;

z-index:100;

padding:20px 0;

box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.category-navigation{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.category-pill{

padding:12px 24px;

border-radius:50px;

background:#fff;

border:2px solid #EAF3FA;

font-weight:700;

color:#555;

transition:.3s;

}

.category-pill:hover,

.category-pill.active{

background:#00B8FF;

border-color:#00B8FF;

color:#fff;

transform:translateY(-3px);

}

/*==================================================
SERVICE CARD
==================================================*/

.service-card{

background:#fff;

border-radius:28px;

overflow:hidden;

height:100%;

box-shadow:0 18px 40px rgba(0,0,0,.08);

transition:.35s;

position:relative;

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 65px rgba(0,0,0,.15);

}

.service-card img{

width:100%;

height:240px;

object-fit:cover;

transition:.4s;

}

.service-card:hover img{

transform:scale(1.08);

}

.service-content{

padding:28px;

}

.service-badge{

display:inline-block;

background:#EAF8FF;

color:#00B8FF;

padding:8px 16px;

border-radius:50px;

font-size:13px;

font-weight:700;

margin-bottom:15px;

}

.service-content h3{

font-size:28px;

font-weight:800;

color:#062B45;

margin-bottom:15px;

}

.service-content p{

font-size:15px;

color:#666;

line-height:1.8;

}

.service-tags{

display:flex;

gap:8px;

flex-wrap:wrap;

margin:20px 0;

}

.service-tags span{

padding:7px 14px;

background:#F4F8FC;

border-radius:50px;

font-size:13px;

font-weight:600;

color:#666;

}

.service-meta{

display:flex;

justify-content:space-between;

font-size:14px;

margin-bottom:20px;

color:#666;

}

.service-meta i{

color:#FF8C00;

margin-right:5px;

}

.service-tabs{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin-bottom:50px;

}

.tab-btn{

border:none;

padding:14px 26px;

border-radius:50px;

background:#fff;

font-weight:700;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.tab-btn:hover,

.tab-btn.active{

background:#00B8FF;

color:#fff;

}

.search-wrapper{

max-width:700px;

margin:auto;

}

.search-wrapper .form-control{

height:60px;

border-radius:50px;

}

.search-wrapper .input-group-text{

border-radius:50px 0 0 50px;

background:#fff;

}

.service-item{

display:none;

}

.service-item.active{

display:block;

animation:fadeUp .5s;

}

/*==================================================
PROCESS SECTION
==================================================*/

.process-section{
    background:#fff;
}

.process-card{
    background:#fff;
    border:1px solid #eef3f8;
    border-radius:28px;
    padding:35px 25px;
    height:100%;
    transition:.35s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    position:relative;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.process-number{
    width:50px;
    height:50px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#00B8FF,#0095FF);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.process-card i{
    font-size:42px;
    color:#FF8C00;
    margin-bottom:20px;
}

.process-card h5{
    font-weight:700;
    color:#062B45;
    margin-bottom:10px;
}

.process-card p{
    color:#6B7280;
    font-size:15px;
}

/*==================================================
CUSTOM PROGRAM CTA
==================================================*/

.custom-program-section{
    background:linear-gradient(135deg,#00B8FF,#0069C7,#FF8C00);
    color:#fff;
    padding:100px 0;
}

.custom-badge{
    display:inline-block;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(12px);
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
}

.custom-title{
    font-size:50px;
    font-weight:800;
    line-height:1.2;
}

.custom-description{
    font-size:18px;
    line-height:1.9;
    opacity:.95;
}

.custom-list li{
    margin-bottom:14px;
    font-size:16px;
}

.custom-list i{
    color:#FFD54A;
    margin-right:8px;
}

.custom-image{
    filter:drop-shadow(0 30px 60px rgba(0,0,0,.25));
}

/*==================================================
BENEFITS
==================================================*/

.benefits-section{
    background:#F8FBFF;
}

.benefit-card{
    background:#fff;
    border-radius:28px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.benefit-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.benefit-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#FFD54A,#FF8C00);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.benefit-card h4{
    font-size:24px;
    font-weight:700;
    color:#062B45;
    margin-bottom:15px;
}

.benefit-card p{
    color:#6B7280;
}

/*==================================================
DESTINATION
==================================================*/

.destination-card{
    background:#fff;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.destination-card:hover{
    transform:translateY(-8px);
}

.destination-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.35s;
}

.destination-card:hover img{
    transform:scale(1.08);
}

.destination-card h4{
    padding:25px;
    text-align:center;
    font-weight:700;
    color:#062B45;
}

/*==================================================
TESTIMONIAL
==================================================*/

.testimonials-section{
    background:#fff;
}

.testimonial-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.testimonial-photo{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-rating{
    color:#FFC107;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#6B7280;
    line-height:1.8;
}

/*==================================================
FAQ
==================================================*/

.faq-section{
    background:#F8FBFF;
}

.accordion-item{
    border:none;
    border-radius:20px !important;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.accordion-button{
    font-weight:700;
    padding:24px;
    font-size:17px;
}

.accordion-button:not(.collapsed){
    background:#00B8FF;
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:25px;
    line-height:1.9;
    color:#6B7280;
}

/*==================================================
BLOG
==================================================*/

.blog-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-card img{
    height:240px;
    object-fit:cover;
    width:100%;
}

.blog-content{
    padding:28px;
}

.blog-category{
    display:inline-block;
    padding:8px 16px;
    background:#EAF8FF;
    color:#00B8FF;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

.blog-content h4{
    margin:18px 0;
    font-weight:700;
    color:#062B45;
}

.blog-content p{
    color:#6B7280;
    margin-bottom:18px;
}

.blog-content a{
    color:#FF8C00;
    font-weight:700;
}

/*==================================================
FINAL CTA
==================================================*/

.final-cta{
    background:linear-gradient(135deg,#062B45,#00B8FF,#FF8C00);
    padding:90px 0;
}

.final-cta .section-title{
    color:#fff;
}

/*==================================================
FOOTER
==================================================*/

.footer{
    background:#031D33;
    color:#fff;
    padding:90px 0 30px;
}

.footer h5{
    font-weight:700;
    margin-bottom:25px;
}

.footer p{
    color:#BFD4E3;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#BFD4E3;
}

.footer-links a:hover{
    color:#FFD54A;
}

.footer hr{
    border-color:rgba(255,255,255,.12);
    margin:50px 0 25px;
}

/*==================================================
FLOATING WHATSAPP
==================================================*/

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    z-index:9999;
    transition:.35s;
}

.floating-whatsapp:hover{
    transform:scale(1.12);
    color:#fff;
}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

@keyframes zoomIn{

0%{
opacity:0;
transform:scale(.9);
}

100%{
opacity:1;
transform:scale(1);
}

}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(1);
}

}

.fade-up{

animation:fadeUp .8s ease both;

}

.zoom-in{

animation:zoomIn .7s ease both;

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#EEF6FB;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(180deg,#00B8FF,#FF8C00);

border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

background:#0095FF;

}

/*==================================================
SECTION SPACING
==================================================*/

.service-category,
.process-section,
.benefits-section,
.destinations-section,
.testimonials-section,
.resources-section,
.faq-section{

padding-top:100px;
padding-bottom:100px;

}

/*==================================================
IMAGE EFFECT
==================================================*/

.service-card,
.featured-card,
.destination-card,
.blog-card{

overflow:hidden;

}

.service-card img,
.featured-card img,
.destination-card img,
.blog-card img{

transition:.5s ease;

}

.service-card:hover img,
.featured-card:hover img,
.destination-card:hover img,
.blog-card:hover img{

transform:scale(1.08);

}

/*==================================================
BUTTON EFFECT
==================================================*/

.btn{

transition:.35s ease;

}

.btn:hover{

transform:translateY(-4px);

}

/*==================================================
LINK EFFECT
==================================================*/

a{

transition:.3s ease;

}

a:hover{

text-decoration:none;

}

/*==================================================
CARD BORDER EFFECT
==================================================*/

.service-card::before,
.featured-card::before,
.feature-card::before,
.benefit-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:4px;

background:linear-gradient(90deg,#00B8FF,#FFD54A,#FF8C00);

transform:scaleX(0);

transition:.35s;

transform-origin:left;

}

.service-card:hover::before,
.featured-card:hover::before,
.feature-card:hover::before,
.benefit-card:hover::before{

transform:scaleX(1);

}

/*==================================================
HERO PARALLAX READY
==================================================*/

.hero{

background-attachment:fixed;

}

/*==================================================
FOCUS
==================================================*/

button:focus,
input:focus,
textarea:focus{

outline:none;

box-shadow:none;

}

/*==================================================
FORM
==================================================*/

input,
textarea,
select{

border-radius:18px !important;

padding:14px 18px;

border:1px solid #E5EAF0;

}

input:focus,
textarea:focus{

border-color:#00B8FF;

}

/*==================================================
SHADOW UTILITIES
==================================================*/

.shadow-soft{

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.shadow-medium{

box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.shadow-large{

box-shadow:0 35px 70px rgba(0,0,0,.18);

}

/*==================================================
ROUNDED UTILITIES
==================================================*/

.rounded-xl{

border-radius:25px;

}

.rounded-xxl{

border-radius:35px;

}

/*==================================================
GRADIENT BACKGROUND
==================================================*/

.bg-gradient-primary{

background:linear-gradient(135deg,#00B8FF,#0095FF);

}

.bg-gradient-orange{

background:linear-gradient(135deg,#FFD54A,#FF8C00);

}

.bg-gradient-dark{

background:linear-gradient(135deg,#062B45,#003B6D);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px){

.hero-title{

font-size:56px;

}

.section-title{

font-size:40px;

}

}

@media(max-width:991px){

.hero{

min-height:auto;

padding:120px 0 80px;

background-attachment:scroll;

}

.hero-title{

font-size:44px;

text-align:center;

}

.hero-description{

text-align:center;

margin:auto auto 30px;

}

.hero-rating{

justify-content:center;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:50px;

max-width:500px;

margin-left:auto;

margin-right:auto;

}

.section-title{

font-size:34px;

}

.feature-card,
.service-card,
.featured-card,
.benefit-card,
.destination-card,
.blog-card{

margin-bottom:25px;

}

.program-navigation{

top:72px;

}

}

@media(max-width:768px){

.hero-title{

font-size:38px;

}

.section-title{

font-size:30px;

}

.hero-description{

font-size:17px;

}

.stat-box{

margin-bottom:20px;

}

.feature-icon,
.benefit-icon{

width:75px;

height:75px;

font-size:28px;

}

.service-meta{

flex-direction:column;

gap:10px;

}

.featured-meta{

flex-direction:column;

gap:10px;

}

.category-navigation{

justify-content:flex-start;

overflow-x:auto;

padding-bottom:10px;

flex-wrap:nowrap;

}

.category-navigation::-webkit-scrollbar{

display:none;

}

.category-pill{

white-space:nowrap;

}

}

@media(max-width:576px){

body{

font-size:15px;

}

.hero{

padding-top:100px;

}

.hero-title{

font-size:32px;

}

.section-title{

font-size:27px;

}

.section-description{

font-size:15px;

}

.hero-buttons .btn{

width:100%;

}

.btn{

padding:14px 20px;

}

.feature-card,
.service-card,
.featured-card,
.destination-card,
.benefit-card,
.blog-card{

border-radius:22px;

}

.floating-whatsapp{

width:58px;

height:58px;

font-size:26px;

right:18px;

bottom:18px;

}

}

/*==================================================
PRINT
==================================================*/

@media print{

.navbar,
.topbar,
.footer,
.floating-whatsapp{

display:none;

}

body{

background:#fff;

}

}

/* ==================================================
ACTIVITY CATEGORY TABS
================================================== */

.activity-category {
    display: none;
}

.activity-category.active {
    display: block;
}

/* TAB BUTTON */

.service-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 40px auto 20px;
}

.tab-btn {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #ffc107;
    border-color: #ffc107;
    color: #111;
}

/*==================================================
END
==================================================*/