
/* ---------- CSS VARIABLES ---------- */
:root {
  --red:          #D32F2F;
  --red-dark:     #B71C1C;
  --red-light:    #FFEBEE;
  --red-mid:      #EF5350;
  --green:        #2E7D32;
  --green-dark:   #062e09;
  --green-light:  #E8F5E9;
  --green-mid:    #43A047;
  --white:        #FFFFFF;
  --off-white:    #eefcfe;
  --dark:         #1A1A1A;
  --dark-mid:     #333333;
  --text-muted:   #6B7280;
  --border:       #E5E7EB;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.16);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-xl:    28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, .display-font {
  font-family: var(--font-display);
}
img { max-width: 100%; }
a { text-decoration: none; transition: var(--transition); }
section { padding: 80px 0; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--green-dark) !important;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar-item {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
}
.topbar-item i { color: #A5D6A7; }
.social-icon {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
  transition: var(--transition);
  position: sticky;
}
.main-navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
}
.logo-icon img {
  width: 70%;  
  height: 70%;
  object-fit: contain;
}
.navbar-nav .nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--red);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 10px;
  transition: var(--transition);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.custom-dropdown {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 220px;
  margin-top: 8px !important;
  border-top: 3px solid var(--red);
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.custom-dropdown .dropdown-item {
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-mid);
  padding: 9px 14px;
  transition: var(--transition);
}
.custom-dropdown .dropdown-item:hover {
  background: var(--red-light);
  color: var(--red);
}

/* CTA Buttons in Navbar */
.btn-outline-nav {
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 18px;
  transition: var(--transition);
}
.btn-outline-nav:hover {
  background: var(--green);
  color: #fff;
}
.btn-book-now {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 22px;
  box-shadow: 0 4px 16px rgba(211,47,47,0.35);
  transition: var(--transition);
}
.btn-book-now:hover {
  background: linear-gradient(135deg, var(--red-dark), #7B0000);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(211,47,47,0.45);
}
/* Toggler */
.custom-toggler {
  border: none;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}

.custom-toggler span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--red);
  border-radius: 10px;
  transition: var(--transition);
}
.custom-toggler span:nth-child(2) { width: 18px; }

.brand-text-logo img{
    height: 40px;
    width: auto; 
    display: block;
}

@media (max-width:768px){
    .brand-text-logo img{
        height: 30px;
    }
}

/* =========================================================
  Hero Section 
   ========================================================= */
.hero-section {
    position: relative;
    min-height: auto;
    height: 100vh;
    width: 100%; 
    background-color: #edf5fc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}
.hero__clouds {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3; 
}
.cloud {
    position: absolute;
    bottom: 0;
    width: 500px;
    height: 273px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.8; 
}
.cloud-1 {
    left: 80px;
    background-image: url('https://themeenergy.com/themes/test/bytmulti/skiing/wp-content/uploads/sites/9/revslider/mountain-parallax-header/cloud1.png');
    animation: drift 80s linear infinite;
}
.cloud-2 {
    left: 50%;
    transform: translateX(-50%);
    background-image: url('https://themeenergy.com/themes/test/bytmulti/skiing/wp-content/uploads/sites/9/revslider/mountain-parallax-header/cloud2.png');
    animation: drift 200s linear infinite;
}
.cloud-3 {
    right: 100px;
    background-image: url('https://themeenergy.com/themes/test/bytmulti/skiing/wp-content/uploads/sites/9/revslider/mountain-parallax-header/cloud3.png');
    animation: drift 240s linear infinite;
}
.cloud-4 {
    left: -180px;
    background-image: url('https://themeenergy.com/themes/test/bytmulti/skiing/wp-content/uploads/sites/9/revslider/mountain-parallax-header/cloud3.png');
    animation: drift 160s linear infinite;
}
.cloud-5 {
    right: -120px;
    background-image: url('https://themeenergy.com/themes/test/bytmulti/skiing/wp-content/uploads/sites/9/revslider/mountain-parallax-header/cloud1.png');
    animation: drift 400s linear infinite;
}
@keyframes drift {
    from { transform: translateX(-200px); }
    to { transform: translateX(calc(100vw + 200px)); }
}
.text-layer {
    position: absolute;
    top: 30%;
    left: 57%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    text-align: center;
}
.hero-title {
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 900;
    color: #065313 !important;
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 0;
    text-transform: uppercase; 
    object-fit: cover;
}
.image-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.image-layer img {
    width: 100%;
    height: 100%;
     object-fit: cover;  
}
.image-layer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    z-index: 10; 
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 40%, 
        rgba(255, 255, 255, 1) 100% 
    );
    pointer-events: none; 
}
@media (max-width: 480px) {
  .text-layer {
    top: 25%;
    left: 50%;
  }
  .hero-title {
    font-size: clamp(2rem, 16vw, 4rem);
    letter-spacing: -0.5px;
    line-height: 1.05;
  }
   .image-layer img {
       object-position: center 40%;
    }
}

@media (max-width: 768px) {
    .cloud {
        width: 320px;
        height: 200px;
        bottom: 100px;
    }
    .text-layer {
        top: 25%;
        left: 50%;
  }
  .hero-title {
    font-size: clamp(2.5rem, 14vw, 6rem);
    letter-spacing: -1px;
    line-height: 1;
  }
   .image-layer{
       bottom: -40px;
    }
     .image-layer img {
        height: 82%;  
        object-fit: cover;
        object-position: center top;
    }
}

/* =========================================================
   about section
   ========================================================= */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color:  #065313 !important;
 line-height: 1.2; margin-bottom: 25px;
}
.text-red {color: #de0000;}
.image-collage-wrapper {position: relative;height: 500px; width: 100%;}
.image-collage-wrapper img {border-radius: 40px;object-fit: cover;box-shadow: 0 15px 30px rgba(0,0,0,0.1);}
.img-large {
    position: absolute;
    width: 60%;
    height: 80%;
    z-index: 1;
    top: 0;
    left: 0;
}
.img-large img { width: 100%; height: 100%; border: 8px solid #fff; }
.img-small-top {position: absolute; width: 40%; height: 45%;top: 5%;  right: 5%; z-index: 2;}
.img-small-top img { width: 100%; height: 100%; border: 8px solid #fff; }
.img-small-bottom {
    position: absolute;
    width: 50%;
    height: 57%;
    bottom: 0;
    right: 10%;
    z-index: 3;
}
.img-small-bottom img { width: 100%; height: 100%; border: 8px solid #fff; }
.stat-card {
    background: #f8f9fa;
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
.stat-card:hover {transform: translateY(-5px);background: #ffffff;box-shadow: 0 10px 20px rgba(0,0,0,0.05);}
.stat-card h3 {font-weight: 800; font-size: 1.5rem; margin-bottom: 5px;}
.stat-card p { font-size: 0.85rem; color: #6c757d;margin-bottom: 0;}
@media (max-width: 991px) {
    .image-collage-wrapper {
        height: 400px;
        margin-bottom: 30px;
    }
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features-section { background-color: var(--white);}
.feat-redline {width: 36px; height: 3px; background-color: var(--red); border-radius: 2px;}
.btn-view-services {
    display: inline-block;
    background-color: var(--red);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-view-services:hover { background-color: var(--red-dark); color: var(--white); transform: translateY(-2px);text-decoration: none;}
@media (min-width: 992px) {
    .feat-col-mid {
        margin-top: 60px;
    }
    .feat-col-right {
        margin-top: 20px;
    }
}
.feat-card-white {
    background-color: rgb(255, 255, 255);
    border-radius: 40px 0px 40px 0px;
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feat-card-white:hover {transform: translateY(-5px); box-shadow: var(--shadow-md);}
.feat-card-red {
    background-color: var(--red);
    border-radius: 40px 0px 40px 0px;
    padding: 36px 28px;
    box-shadow: 0 12px 40px rgba(211, 47, 47, 0.30);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feat-card-red:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(211, 47, 47, 0.42);}
.icon-box {
    width: 58px;
    height: 58px; 
    background-color: var(--red-light);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.4rem;
    transition: background-color var(--transition), color var(--transition);
}
.icon-box--white {background-color: rgba(255, 255, 255, 0.22);color: var(--white);}
.icon-box--green { background-color: var(--green-light); color: var(--green);}
.feat-card-white:hover .icon-box { background-color: var(--red);color: var(--white);}
.feat-card-white:hover .icon-box--green { background-color: var(--green);color: var(--white);}
.feat-card-white h5,
.feat-card-bare h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.feat-card-red h5 { font-family: var(--font-body);font-size: 1rem;margin-bottom: 8px;}
.feat-card-white p,
.feat-card-bare p,
.feat-card-red p {font-family: var(--font-body); line-height: 1.65;}

/* =========================================================
   PACKAGES SECTION
   ========================================================= */
.packages-section {
    position: relative;
    min-height: 100vh; 
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s ease-in-out; 
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(52, 51, 51, 0.8) 20%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.content-wrapper {
    position: relative;
    z-index: 2;
}
.section-head {
    font-size: 2.8rem;
    letter-spacing: 4px;
    font-weight: 800;
    color: #ffffff !important;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 60px;
}
.display-1 {
    color: white;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.4);
}
.highlight {
    color: #ffd700; 
    font-weight: 600;
}
.description {
    max-width: 500px;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}
.package-list {
    gap: 15px;
    padding-bottom: 15px;
}
.package-list::-webkit-scrollbar {
    height: 5px;
}
.package-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}
.package-card {
    min-width: 180px;
    height: 260px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.package-card.active {
    border: 3px solid #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}
.package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.3s;
}
.package-card:hover img {
    filter: brightness(1);
}
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.card-info h6 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: white;
    font-weight: bold;
}

.card-info p {
    font-size: 0.75rem;
    color: #cccccc;
    margin: 0;
}

@media (max-width: 991px) {
    .packages-section {
        min-height: auto;
        padding: 40px 10px;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* =================================================
   PACKAGE SECTION 2 
   ============================================== */
.featured-grid-section {  background: var(--off-white);
    padding-bottom: 120px !important; }
.pkg2-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:44px; }
.pkg2-label { font-size:11px; letter-spacing:.25em; text-transform:uppercase; color:var(--red); font-weight:600; margin-bottom:8px; }
.pkg2-title { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:300; color:var(--dark); line-height:1.1; margin:0; }
.pkg2-subtitle { font-size:14px; color:var(--text-muted); max-width:260px; line-height:1.7; text-align:right; }
.pkg2-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pkg-card { position:relative; border-radius:16px; overflow:hidden; cursor:pointer; height:320px; box-shadow:0 4px 16px rgba(0,0,0,0.10); transition:box-shadow .3s,transform .3s; }
.pkg-card:hover { box-shadow:0 12px 36px rgba(0,0,0,0.18); transform:translateY(-4px); }
.pkg-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.25,.46,.45,.94); }
.pkg-card:hover .pkg-img { transform:scale(1.06); }
.pkg-discount { position:absolute; top:14px; right:14px; background:var(--green); color:#fff; font-size:11px; font-weight:600; padding:5px 12px; border-radius:6px; z-index:3; }
.pkg-info { position:absolute; bottom:0; left:16px; right:16px; background:#fff; border-radius:14px 14px 0 0; padding:16px 18px 18px; transform:translateY(calc(100% - 88px)); transition:transform .38s cubic-bezier(.4,0,.2,1); z-index:2; }
.pkg-card:hover .pkg-info { transform:translateY(0); }
.pkg-info-name { font-family:'Cormorant Garamond',serif; font-size:21px; font-weight:400; color:var(--dark); margin:0 0 5px; line-height:1.2; }
.pkg-info-location { font-size:12px; color:var(--text-muted); display:flex; align-items:center; gap:4px; }
.pkg-info-extra { overflow:hidden; max-height:0; opacity:0; transition:max-height .35s ease,opacity .3s ease .05s; }
.pkg-card:hover .pkg-info-extra { max-height:120px; opacity:1; }
.pkg-stars { display:flex; gap:2px; margin:10px 0; }
.pkg-stars span { color:#f0a500; font-size:13px; }
.pkg-stars .empty { color:#ddd; }
.pkg-info-divider { height:1px; background:var(--border); margin:0 0 12px; }
.pkg-info-footer { display:flex; align-items:center; justify-content:space-between; }
.pkg-price-days { font-size:15px; font-weight:600; color:var(--dark); }
.pkg-price-days span { color:var(--red); }
.pkg-explore { font-size:12px; font-weight:600; color:var(--dark); text-decoration:none; letter-spacing:.06em; transition:color .2s; }
.pkg-explore:hover { color:var(--red); }
.pkg2-cta-row { margin-top:32px; display:flex; align-items:center; justify-content:space-between; padding:0 4px; }
.pkg2-count { font-size:13px; color:var(--text-muted); }
.pkg2-viewall { font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--red); text-decoration:none; font-weight:600; border-bottom:1.5px solid var(--red-light); padding-bottom:2px; }
.pkg2-viewall:hover { border-color:var(--red); }
.pkg2-viewall {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  position: relative;
  transition: color .2s;
}
.pkg2-viewall::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}
.pkg2-viewall:hover { color: var(--red); }
.pkg2-viewall:hover::after { width: 100%; }
.pkg2-viewall-line {display: flex;align-items: center;}
.pkg2-viewall:hover .pkg2-viewall-dash { width: 40px; }
.pkg2-viewall-circle {width: 26px;height: 26px;border: 1px solid var(--red); border-radius: 50%;display: flex;
  align-items: center; justify-content: center;color: var(--red);font-size: 11px;flex-shrink: 0;}
@media(max-width:991px){ .pkg2-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:575px){ .pkg2-grid{ grid-template-columns:1fr; } .pkg2-title{font-size:34px;} }


.featured-grid-section,
.gallery-section {
    position: relative;
    z-index: 1;
}
/* =========================================================
   GALLERY GRID
   ========================================================= */
.gallery-section {
    background: #ffffff;
    padding: 80px 0;
    margin-top: 60px;
}

.featured-video-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:768px) {
    .video-card {
        height: 250px;
    }
}
/* =========================================================
  Partner Section
  ========================================================= */
.logo-showcase-section {    background-color: #eef3fe;    padding: 30px 0;}.logo-wrapper {    position: relative;    overflow: hidden;    padding: 30px 0;}.logo-wrapper::before,.logo-wrapper::after {    content: '';    position: absolute;    top: 0; bottom: 0;    width: 100px;    z-index: 2;    pointer-events: none;}.logo-wrapper::before {    left: 0;    background: linear-gradient(to right, #eef3fe, transparent);}.logo-wrapper::after {    right: 0;    background: linear-gradient(to left, #eef3fe, transparent);}
/* =========================================================
   FOOTER
   ========================================================= */
.main-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-brand .footer-logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}
.footer-logo-text span { color: var(--red-mid); }
.footer-logo-sub { font-size: 0.65rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.footer-socials { gap: 8px; }
.footer-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
}
.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background: var(--red);
  border-radius: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--red-mid);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-links a:hover i { color: var(--red); }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(211,47,47,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.60);
  transition: var(--transition);
}

.footer-contact-list a:hover { color: var(--red-mid); }

.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--red-mid); }

.footer-payments img {
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition);
}

.footer-payments img:hover { filter: none; opacity: 1; }


/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px; 
  z-index: 999;
}
.whatsapp-btn {
  width: 50px;
  height: 50px;
  background-color: #25D366; 
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: white;
}
.scroll-top-btn {
  width: 50px;
  height: 50px;
  background-color: #D32F2F; 
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.scroll-top-btn:hover {
  background-color: #b71c1c;
  transform: translateY(-5px);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
  .floating-actions {
    right: 15px;
    bottom: 15px;
  }
  .whatsapp-btn, .scroll-top-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .hero-search-card { margin-top: 40px; }
  .navbar-collapse { padding: 16px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 576px) {
  section { padding: 60px 0; }
  .hero-content { padding: 80px 0 130px; }
  .hero-stats { gap: 20px; }
  .countdown-wrap { gap: 10px; }
  .countdown-box { min-width: 72px; padding: 14px 16px; }
  .countdown-num { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
}
