/* Isolated CSS for facilities sections - won't affect other parts of the page */

html {
    font-size: 100%; /* Explicitly set to the browser default (16px) */
}

.about {
    background: white !important;
}


/* New Facility Section */
.new-facility-section {
    text-align: center;
    color: #333;
    background-color: white;
}


.new-facility-container {
    margin: 0 auto;
}

.new-facility-title {
    color: #f7a03a; /* Changed from #e30404 */
    margin-bottom: 40px;
    position: relative;
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #005062; /* Changed from #83BFC0 */
    margin: 15px auto;
}

/* Grid Styling */
.facility-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Facility Box */
.facility-box-creative {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Background */
.icon-background {
    background: linear-gradient(to right, #005062, #005062, #005062); /* Changed from green gradient */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    border-bottom: 5px solid #CAC9CB;
}

/* ----- FIX APPLIED HERE ----- */
.icon-background i {
    font-size: 2.5em; /* Set icon size to medium */
}
/* --------------------------- */


.facility-box-creative:hover .icon-background {
    background: linear-gradient(to right, #005062, #005062, #005062); /* Changed from green gradient */
}

/* Facility Information */
.facility-info {
    padding: 25px 20px;
    text-align: center;
}

.facility-info h3 {
    color: #f7a03a; /* Changed from #054735 */
    margin-bottom: 12px;
}

.facility-info p {
    color: #555;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #005062, #005062); /* Changed from green gradient */
    color: #fff;
    text-align: center;
}

.features-title {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-size: 35px;
}

.features-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: #f7a03a; /* Changed from #ed9b43 */
    margin: 10px auto;
}

.features-subtitle {
    opacity: 0.9;
}

/* Cards Container */
.features-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card Base */
.feature-card {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    padding: 30px;
    color: #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
    flex-grow: 1;
}

/* Special wider style for the Room Types card */
.feature-card.card-red {
    max-width: 450px;
    min-width: 380px;
}

/* Card Colors */
.card-blue .card-icon {
    background: #005062; /* Changed from #3498db */
}

.card-red .card-icon {
    background: #f7a03a; /* Changed from #e74c3c */
}

.card-purple .card-icon {
    background: #005062; /* Changed from #9b59b6 */
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Card Heading */
.card-heading {
    margin-bottom: 20px;
    color: #005062; /* Changed from #054735 */
}

/* Card List */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-list li {
    background: #f4f6f8;
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

/* Dot Style (for blue card) */
.dot {
    width: 8px;
    height: 8px;
    background: #005062; /* Changed from #3498db */
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Number Style (for red card) */
.number {
    background: #f7a03a; /* Changed from #e74c3c */
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Minus Style (for purple card) */
.minus {
    width: 20px;
    height: 4px;
    background: #005062; /* Changed from #9b59b6 */
    border-radius: 2px;
    margin-right: 10px;
    margin-top: 8px;
    flex-shrink: 0;
}

.carousel-inner>.item>img {
    display: block;
    max-width: 100%;
    height: 650px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-card.card-red {
        max-width: 380px;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .facility-grid-creative {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-card {
        max-width: 100%;
    }

    .feature-card.card-red {
        max-width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    .icon-background {
        padding: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }
	
	.carousel-inner>.item>img {
    display: block;
    max-width: 100%;
    height: 250px;
}
}


/* Main Amenities Section */
.roosevelt-amenities {
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box; 
}

.roosevelt-amenities-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.roosevelt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.roosevelt-category-section {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.roosevelt-category-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Maintained original shadow */
}

.roosevelt-category-title {
    font-size: 2.2rem; 
    color: #005062; /* Uses new primary blue directly */
    margin-top: 0;
    margin-bottom: 1.5rem; 
    position: relative;
    font-weight: 700;
    width: 100%;
}

.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f7a03a; /* Uses new accent orange directly */
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.roosevelt-category-image {
    width: 100%;
    height: 250px;
    border-radius: 12px; /* Maintained original border-radius */
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.roosevelt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
}

.roosevelt-category-image:hover img {
    transform: scale(1.08); 
}

.roosevelt-amenities-features-grid {
    width: 100%;
}

.roosevelt-amenities-feature-column {
    padding: 0;
    background: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
}

.roosevelt-amenities-feature-column:hover {
    transform: none;
    box-shadow: none;
}

.roosevelt-amenities-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.roosevelt-amenities-feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    /* Updated rgba for border using new accent color #f7a03a */
    border-bottom: 1px solid rgba(247, 160, 58, 0.2); 
    transition: all 0.3s ease-in-out;
}

.roosevelt-amenities-feature-list li:hover {
    /* Updated rgba for background using new accent color #f7a03a */
    background-color: rgba(247, 160, 58, 0.05); 
    padding-left: 15px; 
}

.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}

.roosevelt-amenities-feature-icon {
    color: #f7a03a; /* Uses new accent orange directly */
    margin-right: 1.5rem; 
    font-size: 1.6rem; 
    min-width: 28px; 
    text-align: center;
}

.roosevelt-amenities-feature-text {
    color: #000000; /* Explicitly set to black as requested for paragraphs/secondary text */
    font-size: 1.15rem; 
    font-weight: 500;
}

.roosevelt-amenities-divider {
    display: none; 
}

/* Attractions Section */

.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
}

.category {
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.category-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #f7a03a; /* Updated to new accent orange */
}

.transport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.airport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.restaurant-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.category-header {
    padding: 20px;
    background-color: #005062; /* Updated to new primary blue */
    color: white;
    position: relative;
    margin-top: -7px;
}

.category-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.attraction-list {
    padding: 20px;
    background-color: #fff; /* Maintained original card background color */
}

.attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee; /* Kept subtle light grey border */
}

.attraction:last-child {
    border-bottom: none;
}

.attraction-info {
    flex: 1;
}

.attraction-name {
    font-weight: 500;
    margin-bottom: 4px;
    color: #000; /* Already black, fits requirement */
    font-size: 1.1rem;
}

.attraction-type {
    color: #000000; /* Explicitly set to black as requested for paragraphs/secondary text */
    font-size: 0.95rem;
}

.attraction-distance {
    background-color: #f7a03a; /* Updated to new accent orange */
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.95rem; 
    font-weight: 500;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.attraction:hover .attraction-distance {
    background-color: #005062; /* Updated to new primary blue */
    transform: scale(1.05);
}


/* --- Responsive Adjustments --- */
@media (max-width: 1280px) {
    .roosevelt-amenities-container { padding: 0 1.5rem; }
    .roosevelt-category-title { font-size: 2rem; }
}
@media (max-width: 992px) {
    .roosevelt-amenities { padding: 4rem 0; }
    .roosevelt-categories-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .roosevelt-category-section { padding: 2rem; }
    .roosevelt-category-image { height: 220px; margin-bottom: 1.5rem; }
    .roosevelt-category-title { font-size: 1.8rem; }
}
@media (max-width: 900px) {
    .attractions-container { grid-template-columns: 1fr; }
    .category { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .roosevelt-amenities-container { padding: 0 1rem; }
    .roosevelt-category-section { padding: 1.8rem; }
    .roosevelt-category-image { height: 200px; }
    .roosevelt-category-title { font-size: 1.6rem; margin-bottom: 1rem; }
    .roosevelt-amenities-feature-list li { padding: 0.8rem 0; }
    .roosevelt-amenities-feature-icon { font-size: 1.4rem; min-width: 24px; margin-right: 1rem; }
    .roosevelt-amenities-feature-text { font-size: 1rem; }
}
@media (max-width: 576px) {
    .roosevelt-amenities { padding: 3rem 0; }
    .roosevelt-categories-grid { gap: 2rem; }
    .roosevelt-category-section { padding: 1.5rem; }
    .roosevelt-category-title { font-size: 1.5rem; }
    .roosevelt-category-title:after { width: 50px; height: 3px; margin-top: 0.5rem; }
    .roosevelt-category-image { height: 180px; margin-bottom: 1rem; }
}



.location-container {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  background: white;
}

.location-title {
  text-align: center;
  color: #005062;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #014886;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.coordinates-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #005062;
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
}

.coordinate i {
  color: #f7a03a;
  font-size: 1.2rem;
}

.directions-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: #005062;
  font-size: 1.05rem;
}

.directions-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.directions-form input:focus {
  outline: none;
  border-color: #014886;
  box-shadow: 0 0 0 3px rgba(1, 72, 134, 0.2);
}

.directions-form button {
  background: #005062;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directions-form button:hover {
  background: #f7a03a;
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }
  
  .location-info, .location-map {
    width: 100%;
  }
}






.content-wrapper {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }


.contact-card {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out 0.4s forwards;
            opacity: 0;
            transform: translateY(20px);
            height: 450px;
        }
        
        @keyframes slideUp {
            to { opacity: 1; transform: translateY(0); }
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .contact-card h2 {
            color: #005062;
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
        }
        
        .contact-card h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .info-item i {
            color: #f7a03a;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 18px;
        }
        
        .info-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--hampton-blue);
        }
        
        .info-text p, .info-text a {
            font-size: 1.1rem;
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-text a:hover {
            color: var(--hampton-blue);
        }
        
        .map-container {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out 0.6s forwards;
            opacity: 0;
            transform: translateY(20px);
            height: 450px;
        }
        
        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }
            
            .content-wrapper {
                flex-direction: column;
            }
            
            .contact-card, .map-container {
                width: 100%;
                height: auto;
            }
            
            .map-container {
                height: 350px;
            }
        }







        /* Scoped styles using section ID */
        
        #hotel-navigation-section .container {
            margin: 0 auto;
            padding: 0 20px;
        }
        
        #hotel-navigation-section .navigation-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        #hotel-navigation-section .nav-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        #hotel-navigation-section .nav-item {
            display: flex;
            height: 100%;
        }
        
        #hotel-navigation-section .nav-link {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #333;
            text-decoration: none;
            background: white;
            border-radius: 8px;
            padding: 25px 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            height: 120px; /* Fixed height for rectangular format */
        }
        
        #hotel-navigation-section .nav-link:hover {
            background: #f7a03a;
            color: white;
            box-shadow: 0 8px 16px rgba(0, 98, 204, 0.2);
            transform: translateY(-3px);
        }
        
        #hotel-navigation-section .nav-icon {
            font-size: 24px;
            margin-bottom: 12px;
            color: #fcb100;
            transition: all 0.3s ease;
        }
        
        #hotel-navigation-section .nav-link:hover .nav-icon {
            color: white;
            transform: scale(1.1);
        }
        
        #hotel-navigation-section .nav-text {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        #hotel-navigation-section .nav-desc {
            font-size: 13px;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            #hotel-navigation-section .nav-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            #hotel-navigation-section .nav-link {
                height: 110px;
                padding: 20px 10px;
            }
        }
        
        @media (max-width: 576px) {
            #hotel-navigation-section .nav-row {
                grid-template-columns: 1fr;
            }
            
            #hotel-navigation-section .nav-link {
                height: 100px;
                padding: 15px 10px;
            }
            
            #hotel-navigation-section {
                padding: 30px 0;
            }
        }







.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}


.faq-header p {
    color: black;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #005062;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #f7a03a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #005062, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #005062;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #f7a03a;
    border-bottom-color: #f7a03a;
}

.faq-answer .fa-caret-right {
    color: #f7a03a;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}


em{color: #005062;font-size: 20px;text-align:center; padding:0 0px 0 0; border-radius: 50%;-moz-border-radius: 50%;-webkit-border-radius: 50%;-o-border-radius: 50%;transition: all ease 0.3s;-moz-transition: all ease 0.3s;-webkit-transition: all ease 0.3s;-o-transition: all ease 0.3s;-ms-transition: all ease 0.3s;}




.highlighted-attraction-section {
            color: black;
            text-align: center;
        }

        .highlighted-container {
            max-width: 1200px;
            margin: 40px auto;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: #ffffff;
        }

        .highlighted-header {
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
        }

        .highlighted-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .highlighted-subtitle {
            font-size: 1.3rem;
        }

        .highlighted-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            padding: 30px;
        }

        .highlighted-description {
            flex: 1;
            text-align: left;
        }

        .highlighted-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .highlighted-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .highlighted-features li strong {
            color: #005062;
        }

        .highlighted-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }

        .highlighted-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #005062;
            color: #fff !important;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .highlighted-reservation-btn:hover {
            background: #f7a03a;
            transform: translateY(-3px);
        }

        .highlighted-image {
            flex: 1;
            max-height: 300px;
            overflow: hidden;
        }

        .highlighted-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .highlighted-img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .highlighted-content {
                flex-direction: column;
            }

            .highlighted-title {
                font-size: 2rem;
            }

            .highlighted-subtitle {
                font-size: 1.1rem;
            }
        }

        .highlighted-hospital-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #005062;
            text-align: center;
        }

        .highlighted-hospital-container {
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: #ffffff;
            padding: 40px;
        }

        .hospital-header {
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
            border-radius: 15px;
        }

        .hospital-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
            color: #005062;
        }

        .hospital-subtitle {
            font-size: 1.3rem;
            color: #005062;
        }

        .hospital-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .hospital-description {
            flex: 1;
            text-align: left;
        }

        .hospital-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .hospital-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .hospital-features li strong {
            color: #005062;
        }

        .hospital-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }

        .hospital-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #005062;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .hospital-reservation-btn:hover {
            background: #f7a03a;
            transform: translateY(-3px);
        }

        .hospital-image {
            flex: 1;
            max-height: 300px;
            overflow: hidden;
        }

        .hospital-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hospital-img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .hospital-content {
                flex-direction: column;
            }

            .hospital-title {
                font-size: 2rem;
            }

            .hospital-subtitle {
                font-size: 1.1rem;
            }
        }

        .attraction-details-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #005062;
            text-align: center;
        }

        .attraction-details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .details-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: bold;
            color: #0d3d67;
        }

        .details-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: #2B81A2;
        }

        .details-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .details-image {
            flex: 1;
        }

        .details-image .image {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .details-image .image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .details-description {
            flex: 1;
            text-align: left;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .features-list li {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #444;
        }

        .features-list li strong {
            color: #005062;
        }

        .details-reservation-btn {
            display: inline-block;
            padding: 15px 30px;
            background: #005062;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            margin-top:10px;
        }

        .details-reservation-btn:hover {
            background: #005062;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .details-content {
                flex-direction: column;
            }

            .details-title {
                font-size: 2.5rem;
            }

            .details-subtitle {
                font-size: 1.3rem;
            }
        }

        .dining-details-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #005062;
            text-align: center;
        }

        .dining-details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .dining-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #0d3d67;
        }

        .dining-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #2B81A2;
        }

        .dining-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .dining-image {
            flex: 1;
        }

        .dining-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .dining-img:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .dining-description {
            flex: 1;
            text-align: left;
        }

        .dining-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .dining-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .dining-features li strong {
            color: #005062;
        }

        .dining-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }

        .dining-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #005062;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .dining-reservation-btn:hover {
            background: #f7a03a;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .dining-content {
                flex-direction: column;
            }

            .dining-title {
                font-size: 2rem;
            }

            .dining-subtitle {
                font-size: 1.1rem;
            }
        }


