/* Custom Variables */
:root {
    --primary-color: #E53E3E;
    --secondary-color: #1A202C;
    --accent-color: #F6AD55;
    --text-color: #2D3748;
    --light-gray: #EDF2F7;
    --gradient-primary: linear-gradient(135deg, #E53E3E 0%, #FF8C42 100%);
    --gradient-dark: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.navbar.scrolled {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    position: relative;
    padding: 0;
    margin-right: 3rem;
}

.brand-logo {
    height: 80px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.scrolled .brand-logo {
    height: 65px;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.2)) brightness(1.1);
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    transform: scaleX(1);
    transform-origin: left;
}

 .btn-primary {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    transition: all 0.3s ease;
    font-size: 16px;
}

 .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

/* Enhanced Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .toggler-icon {
    position: relative;
    width: 22px;
    height: 2px;
    background-color: white;
    display: block;
    margin: 6px auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler .toggler-icon:nth-child(1) {
    margin-top: 0;
}

.navbar-toggler .toggler-icon:nth-child(3) {
    margin-bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler:active {
    transform: scale(0.95);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(26, 32, 44, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse.show {
        transform: scaleY(1);
        opacity: 1;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 0 !important;
    }
    
    .navbar-nav .btn-primary {
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
  position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
  z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section h1 {
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    margin-top: -70px;
    position: relative;
    z-index: 10;
    animation: scaleIn 0.5s ease-out;
}

.booking-form input, .booking-form select {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.booking-form input:focus, .booking-form select:focus {
    border-color: var(--accent-color);
    box-shadow: none;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    top: -300px;
    left: -300px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signature {
    animation: float 6s ease-in-out infinite;
}

/* Facility Cards */
.facility-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
    height: 400px;
}

.facility-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.facility-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    transition: all 0.3s ease;
}

.facility-card:hover img {
    transform: scale(1.1);
}

.facility-card:hover::after {
    height: 70%;
}

.facility-card h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    margin: 0;
    z-index: 1;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

/* Room Cards */
.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(229, 62, 62, 0.2);
}

.room-info {
    padding: 2rem;
    position: relative;
}

.room-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.room-card:hover .room-info::before {
    transform: scaleX(1);
}

.price {
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Elegant Stats Section */
.stats-section {
    background: url('images/Poster-2.jpg') center/cover no-repeat fixed;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 92, 43, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%);
}

.stats-section .container {
    z-index: 2;
}

.stat-item {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.5s ease;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@media (max-width: 991px) {
    .stats-section {
        padding: 80px 0;
    }
    
    .stat-item {
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Elegant Footer */
.footer {
    background: linear-gradient(to bottom, #1a202c, #0f172a);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.footer h6 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer .social-links {
    display: flex;
    gap: 15px;
}

.footer .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    transform: translateY(-3px);
}

.footer .social-link:hover::before {
    opacity: 1;
}

.footer .social-link i {
    position: relative;
    z-index: 1;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 10px 20px;
    margin-left: 5px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .booking-form {
        margin-top: -40px;
    }
    
    .facility-card {
        height: 300px;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid var(--accent-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-content h2 {
    color: white;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}

body.loaded .page-loader {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating Elements */
.float-element {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-animation 20s infinite linear;
}

.float-element:nth-child(1) {
    top: -150px;
    left: -150px;
}

.float-element:nth-child(2) {
    top: 50%;
    right: -150px;
    width: 200px;
    height: 200px;
    animation-delay: -5s;
}

.float-element:nth-child(3) {
    bottom: -150px;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float-animation {
    0% { transform: rotate(0deg) translate(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translate(100px) rotate(-360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: -5px auto;
    animation: arrow 2s infinite;
}

.arrows span:nth-child(2) { animation-delay: -0.2s; }
.arrows span:nth-child(3) { animation-delay: -0.4s; }

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

@keyframes arrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-20px, -20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(20px, 20px); }
}

/* About Section Enhancements */
.about-content {
    position: relative;
    z-index: 1;
}

.accent-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 20px 0;
}

.about-image {
    position: relative;
}

.floating-image {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    animation: float 6s ease-in-out infinite;
}

/* Facility Cards Enhancement */
.facility-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
    height: 400px;
    cursor: pointer;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(70px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.facility-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.facility-card:hover .card-content {
    transform: translateY(0);
}

.facility-card:hover .facility-description {
    opacity: 1;
    transform: translateY(0);
}

/* Room Cards Enhancement */
.room-image {
    position: relative;
    overflow: hidden;
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
}

.room-features i {
    color: var(--primary-color);
}

/* Stats Section Enhancement */
.stat-item {
    position: relative;
}

.stat-circle {
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.1);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.stat-circle:hover::before {
    opacity: 0.2;
}

/* Footer Enhancement */
.social-links {
    display: flex;
    gap: 15px;
    margin: 10px 0px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-color);
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter-form input {
    border: none;
    padding: 15px 20px;
}

.newsletter-form button {
    padding: 0 25px;
    border-radius: 0 25px 25px 0;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    margin-left: 20px;
    color: var(--accent-color);
}

/* Animation Classes */
.opacity-0 {
    opacity: 0;
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-image {
        display: none;
    }
    
    .facility-card {
        height: 300px;
    }
    
    .stat-circle {
        width: 120px;
        height: 120px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

/* Topbar */
.topbar {
    background: linear-gradient(to right, #0f5c2b, #2D3748);
    color: #fff;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pulse animation for icons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Contact Items */
.topbar-contact {
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-right: 25px;
    position: relative;
}

.contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-item i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 0.85rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Business Hours */
.topbar-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.topbar-hours i {
    color: var(--accent-color);
}

.topbar-hours span {
    font-weight: 500;
}

/* Language Selector */
.language-selector .form-select {
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    padding: 4px 24px 4px 8px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.language-selector .form-select:focus {
    box-shadow: none;
    border: none;
}

.language-selector .form-select option {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Adjust main navbar position */
.navbar {
    position: fixed;
    top: 75px; /* Height of topbar */
    left: 0;
    right: 0;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    top: 0;
    background: var(--gradient-dark);
    padding: 0.7rem 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .topbar {
        font-size: 0.8rem;
    }

    .contact-item {
        margin-right: 15px;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 0.5rem 0;
    }

    .topbar-contact {
        justify-content: center;
        font-size: 0.85rem;
    }

    .contact-item {
        margin-right: 15px;
    }

    .contact-item:not(:last-child)::after {
        right: -8px;
        height: 12px;
    }

    .contact-item i {
        font-size: 0.8rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }

    .navbar {
        top: 85px; /* Adjusted for mobile topbar height */
    }

    .navbar.scrolled {
        top: 0;
    }
}

@media (max-width: 576px) {

    .dn-none{
        display: none;
    }
    .topbar {
        position: fixed;
        padding: 0.4rem 0;
    }

    .topbar-contact {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .contact-item {
        margin-right: 0;
    }

    .contact-item:not(:last-child)::after {
        display: none;
    }

    .phone-numbers {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .phone-numbers .separator {
        display: none;
    }

    .social-links {
        margin-top: 0.3rem;
    }

    .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    /* Adjust main content padding to account for topbar */
    .hero-section {
        padding-top: 120px;
    }

    .topbar {
        display: block;
    }
}

/* Phone Numbers */
.phone-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-numbers .separator {
    color: var(--accent-color);
    font-weight: 300;
}

.brand-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
}

/* Date Picker Styling */
.date-picker-wrapper {
    position: relative;
}

.date-picker-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    z-index: 4;
}

.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

.flatpickr-months {
    background: var(--gradient-primary);
    border-radius: 10px;
    margin: -20px -20px 10px -20px;
    padding: 15px 20px;
}

.flatpickr-months .flatpickr-month {
    height: auto;
    color: white;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    height: auto;
    color: white !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: var(--accent-color) !important;
}

.flatpickr-current-month {
    padding: 5px 0;
    font-size: 1.2rem;
}

.flatpickr-weekdays {
    background: transparent;
    margin-top: 10px;
}

.flatpickr-weekday {
    color: var(--text-color);
    font-weight: 500;
}

.flatpickr-day {
    border-radius: 8px;
    margin: 2px;
    transition: all 0.3s ease;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.flatpickr-day.inRange {
    background: rgba(229, 62, 62, 0.1);
    border-color: transparent;
    box-shadow: none;
}

.flatpickr-day:hover {
    background: rgba(229, 62, 62, 0.1);
    border-color: transparent;
}

.flatpickr-day.today {
    border-color: var(--primary-color);
}

.booking-form .form-control,
.booking-form .form-select {
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.1);
    transform: translateY(-2px);
}

.booking-form .btn-primary {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.booking-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.3);
}

/* Welcome Section */
.welcome-section {
    background-color: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(15, 92, 43, 0.15) 0%, rgba(15, 92, 43, 0) 100%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.welcome-tag {
    color: #E53E3E;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
}

.welcome-section .section-title {
    color: white;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.welcome-section .tagline {
    color: #4299E1;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.welcome-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.signature-block {
    margin-top: 3rem;
}

.signature-info h4 {
    font-size: 1.2rem;
    color: white;
}

.signature-info .position {
    color: #E53E3E;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.signature-img {
    max-width: 150px;
}

.welcome-image {
    position: relative;
    padding: 20px;
}

.welcome-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: linear-gradient(135deg, #0f5c2b 0%, #1a4731 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .welcome-section {
        padding: 80px 0;
    }
    
    .welcome-image {
        margin-top: 3rem;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
} 