@charset "utf-8";
/* CSS Document */

        /* Custom Theme Adjustments */
        :root {
            --days-inn-blue: #004b87;
            --days-inn-yellow: #ffc107;
            --days-inn-yellow-hover: #e0a800;
        }

        .topbar {
            background-color: var(--days-inn-blue);
            font-size: 0.9rem;
        }

        .topbar a {
            transition: color 0.2s ease-in-out;
        }

        .topbar a:hover {
            color: var(--days-inn-yellow) !important;
        }

        /* Increased logo size here */
        .navbar-brand img {
            max-height: 95px; 
            width: auto;
            transition: transform 0.2s ease;
        }
        
        .navbar-brand img:hover {
            transform: scale(1.02);
        }

        .nav-link {
            font-weight: 600; /* Made slightly bolder to match the larger logo */
            color: #333;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--days-inn-blue) !important;
        }

        /* Underline effect for desktop hover */
        @media (min-width: 992px) {
            .nav-link::after {
                content: '';
                display: block;
                width: 0;
                height: 2px;
                background: var(--days-inn-yellow);
                transition: width .3s;
                position: absolute;
                bottom: -4px;
                left: 0;
            }
            .nav-link:hover::after {
                width: 100%;
            }
        }

        .btn-book {
            background-color: var(--days-inn-yellow);
            color: #000;
            font-weight: 600;
            border: none;
            transition: all 0.2s ease;
        }

        .btn-book:hover {
            background-color: var(--days-inn-yellow-hover);
            color: #000;
            transform: translateY(-1px);
        }
		.lead {
			font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem !important;
    font-weight: 300;
}
        /* Custom Variables */
        :root {
            --days-inn-blue: #004b87;
            --days-inn-yellow: #ffc107;
            --days-inn-yellow-hover: #e0a800;
        }

        /* Hero Slider Custom Styling */
        .hero-slider .carousel-item {
            height:90vh; /* Scalable viewport height */
            min-height: 450px;
            background-color: #222;
        }

        .hero-slider .carousel-image-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Overlay ensures text readability over images */
        .hero-slider .carousel-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
            z-index: 1;
        }

        .hero-slider .carousel-item img {
            width: 100%;
            height:100%;
            object-fit: cover;
        }

        .hero-slider .carousel-caption {
            z-index: 2;
            bottom: 25%; /* Keeps caption centered vertically on desktop */
        }

        /* Customized Slider Control Buttons */
        .hero-slider .carousel-control-prev,
        .hero-slider .carousel-control-next {
            width: 5%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Show next/prev buttons smoothly on slider hover */
        .hero-slider:hover .carousel-control-prev,
        .hero-slider:hover .carousel-control-next {
            opacity: 1;
        }

        .hero-slider .control-icon-box {
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            transition: all 0.2s ease;
        }

        .hero-slider .control-icon-box:hover {
            background-color: var(--days-inn-blue);
            border-color: var(--days-inn-blue);
            transform: scale(1.1);
        }

        /* Dash Indicator Styles */
        .hero-slider .carousel-indicators [data-bs-target] {
            width: 35px;
            height: 5px;
            border-radius: 3px;
            border: none;
            background-color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .hero-slider .carousel-indicators .active {
            background-color: var(--days-inn-yellow);
            width: 50px;
        }

        /* Action Buttons inside Slider */
        .hero-slider .btn-slider-primary {
            background-color: var(--days-inn-yellow);
            color: #000;
            font-weight: 600;
            border: none;
            padding: 12px 30px;
            transition: all 0.2s ease;
        }

        .hero-slider .btn-slider-primary:hover {
            background-color: var(--days-inn-yellow-hover);
            transform: translateY(-2px);
        }

        .hero-slider .btn-slider-outline {
            background-color: transparent;
            color: #fff;
            font-weight: 600;
            border: 2px solid #fff;
            padding: 10px 30px;
            transition: all 0.2s ease;
        }

        .hero-slider .btn-slider-outline:hover {
            background-color: #fff;
            color: #000;
            transform: translateY(-2px);
        }

        /* Animations for Caption Text */
        .carousel-item.active h1 {
            animation: fadeInUp 0.8s ease forwards;
        }
        .carousel-item.active p {
            animation: fadeInUp 1s ease forwards;
        }
        .carousel-item.active .btn-group-wrapper {
            animation: fadeInUp 1.2s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
		/* Removes focus borders on icon wrappers and adds a hover state to the button */
.input-group-text {
  border-color: #dee2e6;
}

.form-control:focus, .form-select:focus {
  box-shadow: none;
  border-color: #86b7fe;
}

.btn-primary {
  height: 38px; /* Matches standard Bootstrap form input heights */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d6efd;
  border: none;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-1px);
}
/* --- Days Inn Core Branding Color Variables --- */
:root {
  --days-blue: #005691;       /* Deep Trust Blue from logo */
  --days-gold: #FFC72C;       /* Vibrant Sunburst Gold from logo */
  --days-light-bg: #F4F7FA;   /* Tinted modern background */
}

/* Color Classes mapping */
.bg-days-light { background-color: var(--days-light-bg); }
.bg-days-blue { background-color: var(--days-blue); }
.text-days-blue { color: var(--days-blue); }
.text-days-gold { color: var(--days-gold); }

/* Opacity utilities for custom styling tags */
.bg-days-blue.bg-opacity-10 { background-color: rgba(0, 86, 145, 0.1) !important; }
.bg-days-gold.bg-opacity-15 { background-color: rgba(255, 199, 44, 0.15) !important; }

/* Custom Text Layout Utilities */
.fw-extrabold { font-weight: 800; }
.tracking-wider { letter-spacing: 0.1em; }
.text-secondary-muted { color: #6c757d; font-size: 0.95rem; }

/* Visual Accent Sunburst Dot Mimicry */
.days-sunburst-dot {
  width: 8px;
  height: 8px;
  background-color: var(--days-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--days-gold);
}

/* --- Interactive Elements --- */
.btn-days-gold {
  background-color: var(--days-gold);
  border: none;
  color: #000000 !important;
}
.btn-days-gold:hover {
  background-color: #e5b220;
  transform: translateY(-2px);
}

.btn-outline-days-blue {
  border: 2px solid var(--days-blue);
  color: var(--days-blue);
  background: transparent;
}
.btn-outline-days-blue:hover {
  background-color: var(--days-blue);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Feature Cards Tactile Hover Feedback */
.hover-days-lift {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.hover-days-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 86, 145, 0.08) !important;
}

.style-icon-box {
  width: 56px;
  height: 56px;
}
/* --- Brand Identity Integration Rules --- */
:root {
  --days-blue: #005691;       /* Deep high-contrast blue */
  --days-gold: #FFC72C;       /* Accent highlight gold */
}

.text-days-blue {
  color: var(--days-blue);
}

.btn-days-blue {
  background-color: var(--days-blue);
  color: #ffffff !important;
  border: none;
  transition: all 0.2s ease-in-out;
}

.btn-days-blue:hover, .btn-days-blue:focus {
  background-color: #003d66; /* Safe darker shade for focus compliance */
  transform: translateY(-1px);
}

/* --- Accessibility Callout Highlights --- */
.border-days-blue {
  border-color: var(--days-blue) !important;
}

.ada-icon-wrapper {
  width: 72px;
  height: 72px;
  font-size: 36px;
}

/* Clean Hover Underline Effect */
.hover-underline:hover, .hover-underline:focus {
  text-decoration: underline !important;
  color: #003d66 !important;
}

.tracking-wider {
  letter-spacing: 0.08em;
}
/* --- Brand Palette Styling Definitions --- */
:root {
  --days-blue: #005691;
  --days-gold: #8A6500;
  --days-light: #F4F7FA;
}

.bg-days-blue { background-color: var(--days-blue) !important; }
.bg-days-light { background-color: var(--days-light); }
.text-days-blue { color: var(--days-blue); }
.text-days-gold { color: var(--days-gold); }

.fw-extrabold { font-weight: 800; }
.tracking-widest { letter-spacing: 0.15em; }

/* Micro-interaction Image Scale Layer */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 3rem rgba(0, 86, 145, 0.15) !important;
}

/* Icon Alignment Equalizer */
.row .d-flex .text-days-blue {
  width: 28px;
  display: flex;
  justify-content: center;
}
/* --- Color Palette Registries --- */
:root {
  --days-blue: #005691;
  --days-gold: #8A6500;
  --days-light: #F4F7FA;
}

.bg-days-light { background-color: var(--days-light); }
.text-days-blue { color: var(--days-blue); }
.text-days-gold { color: var(--days-gold); }

.fw-extrabold { font-weight: 800; }
.tracking-widest { letter-spacing: 0.15em; }
.max-w-xl { max-width: 650px; }
.min-h-300 { min-height: 340px; }

/* Custom Bootstrap Nav Pill Colors */
#attractionTabs .nav-link {
  color: var(--days-blue);
  background-color: transparent;
  border: 1px solid rgba(0, 86, 145, 0.2);
  transition: all 0.2s ease;
}

#attractionTabs .nav-link:hover {
  background-color: rgba(0, 86, 145, 0.05);
}

#attractionTabs .nav-link.active {
  background-color: var(--days-blue) !important;
  color: #ffffff !important;
  border-color: var(--days-blue);
}

/* Image Graphic Linear Shadow Backing */
.bg-dark-gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.style-image-box {
  height: 460px;
}

/* Icon Alignment Helpers */
.tab-pane li span {
  width: 24px;
  text-align: center;
  display: inline-block;
}
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

  :root {
    --days-inn-blue: #00529B;
    --days-inn-yellow: #FFD100;
  }
  
  /* Apply the nice font globally to this section */
  .days-inn-attractions {
    font-family: 'Montserrat', sans-serif;
  }
  
  .bg-days-blue {
    background-color: var(--days-inn-blue) !important;
  }
  
  .text-days-yellow {
    color: var(--days-inn-yellow) !important;
  }
  
  .border-days-yellow {
    border-color: var(--days-inn-yellow) !important;
  }

  /* Smooth Zoom Effect Container */
  .zoom-container {
    overflow: hidden;
    position: relative;
    border: 4px solid var(--days-inn-yellow);
  }

  .zoom-container img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* Triggers the zoom on hover */
  .zoom-container:hover img {
    transform: scale(1.08);
  }

  /* Letter spacing for a modern look */
  .tracking-wider {
    letter-spacing: 0.12em;
  }
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

  :root {
    --days-inn-blue:#005691;
    --days-inn-dark-blue: #003f77; /* Slightly darker shade for the bottom bar */
    --days-inn-yellow: #FFD100;
  }
  
  .days-inn-footer {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--days-inn-blue);
    color: #ffffff;
  }

  .days-inn-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  /* Interactive link hover states */
  .days-inn-footer a:hover {
    color: var(--days-inn-yellow);
    padding-left: 4px; /* Subtle slide-right effect for links */
  }

  /* Social Media Icon Styling */
  .social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff !important;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background-color: var(--days-inn-yellow);
    border-color: var(--days-inn-yellow);
    color: var(--days-inn-blue) !important;
    transform: translateY(-3px);
    padding-left: 0 !important; /* Overrides the standard link shift */
  }

  /* Back to Top Button */
  .btn-back-to-top {
    background-color: var(--days-inn-yellow);
    color: var(--days-inn-blue);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  .btn-back-to-top:hover {
    background-color: #ffffff;
    color: var(--days-inn-blue);
    transform: translateY(-3px);
  }

  .footer-bottom {
    background-color: var(--days-inn-dark-blue);
    font-size: 0.85rem;
  }
  :root {
  --days-inn-blue: #004986;
  --days-inn-dark-blue: #003866;
  --days-inn-yellow: #ffd43b;
  --days-inn-light-blue: #eaf4fb;
  --days-inn-white: #ffffff;
  --days-inn-text: #1f2d3d;
}

.amenities-section {
  background-color: var(--days-inn-light-blue);
  font-family: Arial, Helvetica, sans-serif;
}

.amenities-subtitle {
  margin-bottom: 8px;
  color: var(--days-inn-blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.amenities-title {
  color: var(--days-inn-dark-blue);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.amenities-title::after {
  display: block;
  width: 70px;
  height: 4px;
  margin: 14px auto 0;
  background-color: var(--days-inn-yellow);
  border-radius: 10px;
  content: "";
}

.amenities-description {
  max-width: 680px;
  margin: 18px auto 0;
  color: #3f4f5f;
  font-size: 16px;
  line-height: 1.7;
}

.amenity-card {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 105px;
  padding: 22px;
  background-color: var(--days-inn-white);
  border: 1px solid #c9ddea;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 73, 134, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
  border-color: var(--days-inn-yellow);
  box-shadow: 0 10px 28px rgba(0, 73, 134, 0.18);
}

.amenity-icon {
  display: flex;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-right: 18px;
  color: var(--days-inn-white);
  background-color: var(--days-inn-blue);
  border: 3px solid var(--days-inn-yellow);
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 73, 134, 0.20);
}

.amenity-name {
  color: var(--days-inn-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.accessible-heading {
  padding: 25px 15px;
  background-color: var(--days-inn-blue);
  border-bottom: 5px solid var(--days-inn-yellow);
  border-radius: 12px;
}

.accessible-heading .amenities-subtitle {
  color: var(--days-inn-yellow);
}

.accessible-heading .amenities-title {
  color: var(--days-inn-white);
}

.accessible-heading .amenities-title::after {
  background-color: var(--days-inn-yellow);
}

@media (max-width: 767.98px) {
  .amenities-title {
    font-size: 30px;
  }

  .amenity-card {
    min-height: 95px;
    padding: 18px;
  }

  .amenity-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    margin-right: 15px;
    font-size: 21px;
  }
}
:root {
  --days-blue: #004986;
  --days-dark-blue: #003866;
  --days-yellow: #ffd43b;
  --days-light-blue: #eaf4fb;
  --days-white: #ffffff;
  --days-text: #263746;
  --days-border: #c9ddea;
}

.attractions-section {
  position: relative;
  overflow: hidden;
  background-color: var(--days-light-blue);
  font-family: Arial, Helvetica, sans-serif;
}

.attractions-section::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background-color: rgba(255, 212, 59, 0.22);
  border-radius: 50%;
  content: "";
}

.attractions-section::after {
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 360px;
  height: 360px;
  background-color: rgba(0, 73, 134, 0.08);
  border-radius: 50%;
  content: "";
}

.attractions-section .container {
  position: relative;
  z-index: 1;
}

.attractions-heading {
  max-width: 850px;
}

.section-small-title {
  margin-bottom: 8px;
  color: var(--days-blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-main-title {
  color: var(--days-dark-blue);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.title-divider {
  position: relative;
  width: 90px;
  height: 4px;
  margin: 18px auto;
  background-color: var(--days-yellow);
  border-radius: 10px;
}

.title-divider::before {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: var(--days-blue);
  border: 2px solid var(--days-white);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.section-intro {
  margin: 0 auto;
  color: #425466;
  font-size: 17px;
  line-height: 1.8;
}

.attraction-card {
  overflow: hidden;
  background-color: var(--days-white);
  border: 1px solid var(--days-border);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 73, 134, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-5px);
  border-color: var(--days-yellow);
  box-shadow: 0 14px 35px rgba(0, 73, 134, 0.17);
}

.attraction-icon-area {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 25px;
  background-color: var(--days-blue);
  border-right: 5px solid var(--days-yellow);
}

.attraction-icon-area::before {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 130px;
  height: 130px;
  background-color: rgba(255, 212, 59, 0.16);
  border-radius: 50%;
  content: "";
}

.attraction-icon-area::after {
  position: absolute;
  bottom: -55px;
  left: -55px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.attraction-icon {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  color: var(--days-blue);
  background-color: var(--days-yellow);
  border: 6px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  font-size: 42px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-icon {
  transform: rotate(5deg) scale(1.06);
}

.attraction-number {
  position: absolute;
  right: 18px;
  bottom: 5px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.attraction-content {
  height: 100%;
  padding: 35px 38px;
}

.attraction-title {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 13px;
  color: var(--days-dark-blue);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.3;
}

.attraction-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 3px;
  background-color: var(--days-yellow);
  border-radius: 5px;
  content: "";
}

.attraction-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 20px;
}

.attraction-meta span {
  display: inline-flex;
  align-items: center;
  color: #334e68;
  font-size: 14px;
  font-weight: 700;
}

.attraction-meta i {
  margin-right: 8px;
  color: var(--days-blue);
  font-size: 15px;
}

.attraction-content p {
  margin-bottom: 14px;
  color: var(--days-text);
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 991.98px) {
  .attraction-icon-area {
    min-height: 230px;
    border-right: 0;
    border-bottom: 5px solid var(--days-yellow);
  }

  .attraction-content {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-main-title {
    font-size: 31px;
  }

  .section-intro {
    font-size: 16px;
  }

  .attraction-icon-area {
    min-height: 200px;
    padding: 30px 20px;
  }

  .attraction-icon {
    width: 88px;
    height: 88px;
    font-size: 36px;
  }

  .attraction-number {
    font-size: 52px;
  }

  .attraction-content {
    padding: 25px 22px;
  }

  .attraction-title {
    font-size: 23px;
  }

  .attraction-content p {
    font-size: 15px;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .attraction-meta {
    display: block;
  }

  .attraction-meta span {
    display: flex;
    margin-bottom: 9px;
  }
}
:root {
  --days-blue: #004986;
  --days-dark-blue: #003866;
  --days-yellow: #ffd43b;
  --days-light-blue: #eaf4fb;
  --days-white: #ffffff;
  --days-text: #263746;
  --days-border: #c9ddea;
}

.direction-section {
  position: relative;
  overflow: hidden;
  background-color: var(--days-light-blue);
  font-family: Arial, Helvetica, sans-serif;
}

.direction-section::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 212, 59, 0.2);
  border-radius: 50%;
  content: "";
}

.direction-section::after {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 340px;
  height: 340px;
  background-color: rgba(0, 73, 134, 0.08);
  border-radius: 50%;
  content: "";
}

.direction-section .container {
  position: relative;
  z-index: 1;
}

.direction-info-card,
.direction-form-card {
  padding: 38px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 73, 134, 0.14);
}

.direction-info-card {
  position: relative;
  overflow: hidden;
  color: var(--days-white);
  background-color: var(--days-blue);
  border-bottom: 6px solid var(--days-yellow);
}

.direction-info-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  background-color: rgba(255, 212, 59, 0.14);
  border-radius: 50%;
  content: "";
}

.direction-icon-main {
  position: relative;
  z-index: 1;
  display: flex;
  width: 86px;
  height: 86px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: center;
  color: var(--days-blue);
  background-color: var(--days-yellow);
  border: 5px solid var(--days-white);
  border-radius: 50%;
  font-size: 36px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.direction-small-title {
  margin-bottom: 8px;
  color: var(--days-yellow);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.direction-title {
  margin-bottom: 18px;
  color: var(--days-white);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

.direction-description {
  margin-bottom: 28px;
  color: var(--days-white);
  font-size: 16px;
  line-height: 1.8;
}

.direction-detail {
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.direction-detail-icon {
  display: flex;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  color: var(--days-blue);
  background-color: var(--days-yellow);
  border-radius: 50%;
  font-size: 18px;
}

.direction-detail-title {
  margin-bottom: 3px;
  color: var(--days-yellow);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.direction-detail-text {
  color: var(--days-white);
  font-size: 15px;
  line-height: 1.6;
}

.direction-form-card {
  background-color: var(--days-white);
  border: 1px solid var(--days-border);
}

.direction-form-heading {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 3px solid var(--days-yellow);
}

.direction-form-icon {
  display: flex;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  margin-right: 18px;
  align-items: center;
  justify-content: center;
  color: var(--days-white);
  background-color: var(--days-blue);
  border: 3px solid var(--days-yellow);
  border-radius: 50%;
  font-size: 24px;
}

.direction-form-title {
  color: var(--days-dark-blue);
  font-size: 27px;
  font-weight: 800;
}

.direction-form-subtitle {
  color: #425466;
  font-size: 15px;
  line-height: 1.6;
}

.direction-form-card .form-label {
  color: var(--days-dark-blue);
  font-size: 15px;
  font-weight: 700;
}

.direction-form-card .form-label i {
  color: var(--days-blue);
}

.direction-input {
  min-height: 52px;
  padding: 12px 15px;
  color: #212529;
  background-color: var(--days-white);
  border: 2px solid #b8cfde;
  border-radius: 8px;
  font-size: 15px;
}

.direction-input:focus {
  color: #212529;
  background-color: var(--days-white);
  border-color: var(--days-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 73, 134, 0.2);
}

.direction-input[readonly] {
  color: #334e68;
  background-color: #f1f7fb;
}

.direction-button {
  min-height: 54px;
  color: var(--days-white);
  background-color: var(--days-blue);
  border: 2px solid var(--days-blue);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.direction-button:hover,
.direction-button:focus {
  color: var(--days-dark-blue);
  background-color: var(--days-yellow);
  border-color: var(--days-yellow);
  transform: translateY(-2px);
}

.direction-note {
  display: flex;
  align-items: flex-start;
  margin-top: 22px;
  padding: 15px;
  color: #334e68;
  background-color: var(--days-light-blue);
  border-left: 4px solid var(--days-yellow);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}

.direction-note i {
  margin-top: 4px;
  margin-right: 10px;
  color: var(--days-blue);
}

@media (max-width: 991.98px) {
  .direction-info-card,
  .direction-form-card {
    padding: 30px;
  }
}

@media (max-width: 575.98px) {
  .direction-info-card,
  .direction-form-card {
    padding: 24px 20px;
  }

  .direction-title {
    font-size: 27px;
  }

  .direction-form-title {
    font-size: 23px;
  }

  .direction-form-heading {
    align-items: flex-start;
  }

  .direction-form-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    margin-right: 13px;
    font-size: 21px;
  }
}
.gallery-section{

background:#eef6fc;

}

.gallery-subtitle{

color:#004986;
font-weight:700;
text-transform:uppercase;
letter-spacing:2px;

}

.gallery-title{

font-size:40px;
font-weight:700;
color:#003866;

}

.gallery-line{

width:70px;
height:4px;
background:#FFD43B;
margin:20px auto;

}

.gallery-text{

color:#666;
max-width:700px;
margin:auto;

}

.gallery-item{

overflow:hidden;
border-radius:15px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.gallery-img{

width:100%;
height:260px;
object-fit:cover;
transition:.5s;

}

.gallery-item:hover .gallery-img{

transform:scale(1.12);

}

/* Popup */

#galleryModal{

display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.92);
z-index:9999;
justify-content:center;
align-items:center;

}

#galleryModal img{

max-width:85%;
max-height:85%;
border-radius:10px;
box-shadow:0 0 30px rgba(255,255,255,.2);

}

.close-btn,
.prev-btn,
.next-btn{

position:absolute;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#004986;
color:#fff;
font-size:22px;
transition:.3s;

}

.close-btn:hover,
.prev-btn:hover,
.next-btn:hover{

background:#FFD43B;
color:#003866;

}

.close-btn{

top:25px;
right:30px;

}

.prev-btn{

left:30px;
top:50%;
transform:translateY(-50%);

}

.next-btn{

right:30px;
top:50%;
transform:translateY(-50%);

}

@media(max-width:768px){

.gallery-title{

font-size:30px;

}

.gallery-img{

height:220px;

}

.prev-btn{

left:10px;

}

.next-btn{

right:10px;

}

.close-btn{

right:15px;

}

}
:root {
  --days-blue: #004986;
  --days-dark-blue: #003866;
  --days-yellow: #ffd43b;
  --days-light-blue: #eaf4fb;
  --days-white: #ffffff;
  --days-text: #263746;
  --days-border: #c9ddea;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background-color: var(--days-light-blue);
  font-family: Arial, Helvetica, sans-serif;
}

.contact-section::before {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 330px;
  height: 330px;
  background-color: rgba(255, 212, 59, 0.22);
  border-radius: 50%;
  content: "";
}

.contact-section::after {
  position: absolute;
  bottom: -170px;
  left: -170px;
  width: 380px;
  height: 380px;
  background-color: rgba(0, 73, 134, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-heading {
  max-width: 850px;
}

.contact-small-title {
  margin-bottom: 8px;
  color: var(--days-blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-main-title {
  margin-bottom: 0;
  color: var(--days-dark-blue);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-title-line {
  width: 80px;
  height: 4px;
  margin: 18px auto;
  background-color: var(--days-yellow);
  border-radius: 10px;
}

.contact-intro {
  max-width: 730px;
  margin: 0 auto;
  color: #3e5365;
  font-size: 17px;
  line-height: 1.8;
}

.contact-card {
  padding: 35px 25px;
  background-color: var(--days-white);
  border: 1px solid var(--days-border);
  border-bottom: 5px solid var(--days-yellow);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 73, 134, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--days-blue);
  box-shadow: 0 16px 35px rgba(0, 73, 134, 0.18);
}

.contact-card-icon {
  display: flex;
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  align-items: center;
  justify-content: center;
  color: var(--days-blue);
  background-color: var(--days-yellow);
  border: 5px solid var(--days-light-blue);
  border-radius: 50%;
  font-size: 32px;
  box-shadow: 0 7px 20px rgba(0, 73, 134, 0.18);
}

.contact-card-title {
  margin-bottom: 12px;
  color: var(--days-dark-blue);
  font-size: 22px;
  font-weight: 800;
}

.contact-card-text {
  color: var(--days-text);
  font-size: 16px;
  font-style: normal;
  line-height: 1.75;
}

.contact-card-link {
  color: var(--days-blue);
  font-size: 18px;
  font-weight: 800;
  text-decoration: underline;
}

.contact-card-link:hover,
.contact-card-link:focus {
  color: var(--days-dark-blue);
}

.contact-assistance-box {
  padding: 32px;
  color: var(--days-white);
  background-color: var(--days-blue);
  border-bottom: 6px solid var(--days-yellow);
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 73, 134, 0.18);
}

.contact-assistance-icon {
  display: flex;
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  margin-right: 18px;
  align-items: center;
  justify-content: center;
  color: var(--days-blue);
  background-color: var(--days-yellow);
  border: 4px solid var(--days-white);
  border-radius: 50%;
  font-size: 27px;
}

.contact-assistance-title {
  margin-bottom: 8px;
  color: var(--days-white);
  font-size: 25px;
  font-weight: 800;
}

.contact-assistance-text {
  color: var(--days-white);
  font-size: 15px;
  line-height: 1.75;
}

.contact-buttons {
  display: grid;
  gap: 12px;
}

.contact-call-button,
.contact-direction-button {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.contact-call-button {
  color: var(--days-dark-blue);
  background-color: var(--days-yellow);
  border: 2px solid var(--days-yellow);
}

.contact-call-button:hover,
.contact-call-button:focus {
  color: var(--days-white);
  background-color: var(--days-dark-blue);
  border-color: var(--days-white);
}

.contact-direction-button {
  color: var(--days-white);
  background-color: transparent;
  border: 2px solid var(--days-white);
}

.contact-direction-button:hover,
.contact-direction-button:focus {
  color: var(--days-dark-blue);
  background-color: var(--days-white);
  border-color: var(--days-white);
}

@media (max-width: 767.98px) {
  .contact-main-title {
    font-size: 31px;
  }

  .contact-assistance-box {
    padding: 26px 22px;
  }
}

@media (max-width: 575.98px) {
  .contact-card {
    padding: 30px 20px;
  }

  .contact-assistance-box .d-flex {
    display: block !important;
    text-align: center;
  }

  .contact-assistance-icon {
    margin: 0 auto 18px;
  }

  .contact-assistance-title {
    font-size: 22px;
  }
}
.sitemap-section{
    background:#eef6fc;
    position:relative;
    overflow:hidden;
}

.sitemap-section::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,212,59,.18);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.sitemap-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(0,73,134,.06);
    border-radius:50%;
    bottom:-150px;
    left:-150px;
}

.sitemap-section .container{
    position:relative;
    z-index:2;
}

.sitemap-subtitle{
    color:#004986;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.sitemap-title{
    color:#003866;
    font-size:42px;
    font-weight:700;
}

.sitemap-line{
    width:80px;
    height:4px;
    background:#FFD43B;
    margin:20px auto;
    border-radius:10px;
}

.sitemap-text{
    max-width:700px;
    margin:auto;
    color:#555;
    line-height:1.8;
}

.sitemap-card{
    display:flex;
    align-items:center;
    text-decoration:none;
    background:#fff;
    border-radius:15px;
    padding:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    border-bottom:4px solid #FFD43B;
    height:100%;
}

.sitemap-card:hover{
    transform:translateY(-6px);
    text-decoration:none;
    box-shadow:0 15px 35px rgba(0,73,134,.18);
    border-bottom-color:#004986;
}

.sitemap-card .icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#FFD43B;
    color:#004986;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-right:18px;
    flex-shrink:0;
    transition:.35s;
}

.sitemap-card:hover .icon{
    background:#004986;
    color:#fff;
    transform:rotate(360deg);
}

.sitemap-card span:last-child{
    color:#003866;
    font-size:18px;
    font-weight:700;
}

@media(max-width:767px){

.sitemap-title{
    font-size:32px;
}

.sitemap-card{
    padding:18px;
}

.sitemap-card .icon{
    width:52px;
    height:52px;
    font-size:20px;
}

.sitemap-card span:last-child{
    font-size:17px;
}

}
:root {
  --days-blue: #004986;
  --days-dark-blue: #003866;
  --days-yellow: #ffd43b;
  --days-light-blue: #eaf4fb;
  --days-white: #ffffff;
  --days-text: #263746;
  --days-border: #c9ddea;
}

.hotel-faq-section {
  position: relative;
  overflow: hidden;
  background-color: var(--days-light-blue);
  font-family: Arial, Helvetica, sans-serif;
}

.hotel-faq-section::before {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 330px;
  height: 330px;
  background-color: rgba(255, 212, 59, 0.22);
  border-radius: 50%;
  content: "";
}

.hotel-faq-section::after {
  position: absolute;
  bottom: -170px;
  left: -170px;
  width: 380px;
  height: 380px;
  background-color: rgba(0, 73, 134, 0.08);
  border-radius: 50%;
  content: "";
}

.hotel-faq-section .container {
  position: relative;
  z-index: 1;
}

.hotel-faq-heading {
  max-width: 850px;
}

.hotel-faq-subtitle {
  margin-bottom: 8px;
  color: var(--days-blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hotel-faq-title {
  margin-bottom: 0;
  color: var(--days-dark-blue);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.hotel-faq-title-line {
  width: 80px;
  height: 4px;
  margin: 18px auto;
  background-color: var(--days-yellow);
  border-radius: 10px;
}

.hotel-faq-description {
  max-width: 730px;
  margin: 0 auto;
  color: #3e5365;
  font-size: 17px;
  line-height: 1.8;
}

/* Information card */

.hotel-faq-info-card {
  position: sticky;
  top: 25px;
  overflow: hidden;
  padding: 35px;
  color: var(--days-white);
  background-color: var(--days-blue);
  border-bottom: 6px solid var(--days-yellow);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 73, 134, 0.18);
}

.hotel-faq-info-card::before {
  position: absolute;
  top: -75px;
  right: -75px;
  width: 190px;
  height: 190px;
  background-color: rgba(255, 212, 59, 0.15);
  border-radius: 50%;
  content: "";
}

.hotel-faq-main-icon {
  position: relative;
  z-index: 1;
  display: flex;
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
  color: var(--days-blue);
  background-color: var(--days-yellow);
  border: 5px solid var(--days-white);
  border-radius: 50%;
  font-size: 33px;
}

.hotel-faq-info-title {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  color: var(--days-white);
  font-size: 27px;
  font-weight: 800;
}

.hotel-faq-info-text {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  color: var(--days-white);
  font-size: 15px;
  line-height: 1.8;
}

.hotel-faq-contact-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hotel-faq-contact-icon {
  display: flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-right: 13px;
  align-items: center;
  justify-content: center;
  color: var(--days-blue);
  background-color: var(--days-yellow);
  border-radius: 50%;
  font-size: 17px;
}

.hotel-faq-contact-item strong,
.hotel-faq-contact-item span {
  display: block;
}

.hotel-faq-contact-item strong {
  margin-bottom: 3px;
  color: var(--days-yellow);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hotel-faq-contact-item span {
  color: var(--days-white);
  font-size: 14px;
  line-height: 1.6;
}

.hotel-faq-contact-item a {
  color: var(--days-white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
}

.hotel-faq-contact-item a:hover,
.hotel-faq-contact-item a:focus {
  color: var(--days-yellow);
}

.hotel-faq-call-btn {
  position: relative;
  z-index: 1;
  min-height: 52px;
  margin-top: 18px;
  padding: 13px 20px;
  color: var(--days-dark-blue);
  background-color: var(--days-yellow);
  border: 2px solid var(--days-yellow);
  border-radius: 8px;
  font-weight: 800;
}

.hotel-faq-call-btn:hover,
.hotel-faq-call-btn:focus {
  color: var(--days-white);
  background-color: var(--days-dark-blue);
  border-color: var(--days-white);
}

/* Accordion */

.hotel-faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 16px;
  background-color: var(--days-white);
  border: 1px solid var(--days-border);
  border-radius: 12px;
  box-shadow: 0 7px 22px rgba(0, 73, 134, 0.1);
}

.hotel-faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.hotel-faq-accordion .accordion-button {
  min-height: 76px;
  padding: 16px 55px 16px 18px;
  color: var(--days-dark-blue);
  background-color: var(--days-white);
  border: 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.hotel-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--days-white);
  background-color: var(--days-blue);
  box-shadow: none;
}

.hotel-faq-accordion .accordion-button:focus {
  z-index: 3;
  border-color: var(--days-blue);
  box-shadow: inset 0 0 0 3px var(--days-yellow);
}

.hotel-faq-accordion .accordion-button::after {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  background-size: 20px;
}

.hotel-faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-question-icon {
  display: inline-flex;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  color: var(--days-blue);
  background-color: var(--days-yellow);
  border-radius: 50%;
  font-size: 17px;
}

.hotel-faq-accordion .accordion-button:not(.collapsed)
.faq-question-icon {
  color: var(--days-blue);
  background-color: var(--days-yellow);
}

.hotel-faq-accordion .accordion-body {
  padding: 22px 25px 24px 78px;
  color: var(--days-text);
  background-color: var(--days-white);
  border-top: 4px solid var(--days-yellow);
  font-size: 15px;
  line-height: 1.8;
}

/* Responsive */

@media (max-width: 991.98px) {
  .hotel-faq-info-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767.98px) {
  .hotel-faq-title {
    font-size: 31px;
  }

  .hotel-faq-accordion .accordion-button {
    padding: 15px 48px 15px 15px;
    font-size: 15px;
  }

  .faq-question-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .hotel-faq-accordion .accordion-body {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .hotel-faq-info-card {
    padding: 28px 22px;
  }

  .hotel-faq-accordion .accordion-button {
    align-items: flex-start;
  }

  .faq-question-icon {
    margin-top: 1px;
  }
}
#more {display: none;}