/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2d5a27;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2d5a27;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5a27;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(45, 90, 39, 0.7), rgba(0, 0, 0, 0.3)); */
}

.hero-content {
    z-index: 1;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-location {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-location i {
    margin-right: 0.5rem;
    color: #ffd700;
}

.cta-button {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: visible;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #b82e2e;
    font-weight: 800;
}

.subheading {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button.primary {
    background:  #2d5a27;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.secondary {
    background: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    background: #000000;
    transform: translateY(-2px);
}

.cta-button.secondary:hover {
    border-color: #2d5a27;
    color: #2d5a27;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-visual {
    position: relative;
    height: 500px;
    width: 100%;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
}

.card-bg-blue {
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
}

.card-bg-purple {
    background: linear-gradient(135deg, #c084fc, #a855f7);
}

.card-bg-green {
    background: linear-gradient(135deg, #86efac, #4ade80);
}

.card-large {
    width: 250px;
    height: 300px;
    top: 50px;
    left: 50px;
    z-index: 3;
}

.card-medium {
    width: 200px;
    height: 240px;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.card-small {
    width: 220px;
    height: 180px;
    bottom: 40px;
    left: 160px;
    z-index: 1;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 124, 246, 0.1);
}

.deco-circle-1 {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 200px;
    background: rgba(139, 124, 246, 0.2);
}

.deco-circle-2 {
    width: 40px;
    height: 40px;
    bottom: 100px;
    right: 50px;
    background: rgba(255, 107, 107, 0.2);
}

.deco-circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 180px;
    background: rgba(134, 239, 172, 0.2);
}

.deco-star {
    position: absolute;
    font-size: 1.5rem;
    color: #ffd700;
    animation: twinkle 2s infinite;
}

.deco-star-1 {
    top: 80px;
    right: 100px;
}

.deco-star-2 {
    bottom: 200px;
    left: 20px;
}

.deco-chain {
    position: absolute;
    top: 200px;
    right: 300px;
    font-size: 2rem;
    color: #8b7cf6;
    opacity: 0.3;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
    background: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
    height: 380px; /* Fixed height for all cards */
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.room-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.room-image {
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0; /* Added curved edges to images */
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 0.8rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #666;
}

.feature i {
    color: #2d5a27;
    font-size: 0.9rem;
}

.book-btn {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.3);
}

.book-btn:hover::before {
    left: 100%;
}

.section-footer {
    text-align: center;
}

.more-btn {
    background: transparent;
    color: #2d5a27;
    border: 2px solid #2d5a27;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.more-btn:hover {
    background: #2d5a27;
    color: white;
}

/* Packages Section - Updated with larger cards and images */
.packages {
    padding: 100px 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px); /* Removed rotation for normal arrangement */
    width: 100%;
    height: 450px; /* Increased card height */
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.package-card.animate {
    opacity: 1;
    transform: translateY(0); /* Normal arrangement when animated */
}

.package-card:hover {
    transform: translateY(-8px); /* Simple hover effect without rotation */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.package-image {
    height: 250px; /* Increased image height */
    overflow: hidden;
    border-radius: 20px 20px 0 0; /* Added curved edges to images */
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-info h3 {
    font-size: 1.2rem; /* Slightly larger font */
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 0.8rem;
}

.package-includes {
    margin-bottom: 1.2rem;
    flex: 1;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem; /* Slightly larger font */
    color: #666;
}

.include-item i {
    color: #28a745;
    font-size: 0.8rem;
}

/* Places Section */
.places {
    padding: 100px 0;
    background: white;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.place-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    max-width: 280px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.place-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.place-image {
    height: 180px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.05);
}

.place-info {
    padding: 1.2rem;
}

.place-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 0.4rem;
}

.place-info p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.explore-btn {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: #f8f9fa;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.amenity-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.amenity-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
    margin-bottom: 1rem;
}

.amenity-icon i {
    font-size: 2rem;
    color: #2d5a27;
}

.amenity-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.destination-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.highlight-circle {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.highlight-circle img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2d5a27;
    margin-bottom: 0.5rem;
}

.highlight-circle span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d5a27;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2d5a27;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a27;
}

.submit-btn {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

/* Footer */
.footer {
    background: #ffffff;
    color: rgb(255, 255, 255);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2d5a27;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2d5a27;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
}

.location-item i {
    font-size: 1.5rem;
    color: #2d5a27;
    margin-top: 0.2rem;
}

.location-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .rooms-grid,
    .places-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card {
        height: 430px; /* Slightly reduced height on smaller screens */
    }
    
    .package-image {
        height: 230px; /* Slightly reduced image height on smaller screens */
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-visual {
        height: 400px;
        margin-top: 2rem;
    }
    
    .cards-grid {
        position: static;
        display: block;
    }
    
    .stats-card {
        position: static;
        margin: 1rem 0;
        animation: none;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .main-person-container {
        position: static;
        transform: none;
        margin-bottom: 2rem;
    }
    
    .background-shape {
        position: static;
        transform: none;
        margin: 0 auto;
        width: 200px;
        height: 200px;
    }
    
    .person-image {
        width: 150px;
        height: 150px;
        display: block;
        margin: 0 auto;
        position: static;
    }
    
    .hero-floating-cards {
        display: none;
    }
    
    .rooms-grid,
    .packages-grid,
    .places-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-card,
    .package-card,
    .place-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .room-card .room-image,
    .place-card .place-image {
        height: 250px;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .about-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-stats {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .about-visual {
        height: auto;
        padding: 2rem 0;
    }
    
    .image-card {
        position: static !important;
        margin: 1rem auto;
        display: block;
        width: 80% !important;
        height: 200px !important;
    }
    
    .decorative-elements {
        display: none;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }


    .contact-content {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .destination-highlights {
        gap: 1rem;
    }

    .highlight-circle img {
        width: 60px;
        height: 60px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .floating-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }

    .card-1, .card-2, .card-3 {
        position: static;
        animation: none;
    }
}

@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        max-width: 320px;
        height: 450px; /* Maintain good height on mobile */
    }
    
    .package-image {
        height: 250px; /* Maintain good image height on mobile */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid,
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        height: auto;
        margin-top: 2rem;
    }
    
    .stats-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }
    
    .main-image-container {
        width: 250px;
        height: 250px;
        margin: 0 auto 2rem;
    }
    
    .growth-chart {
        position: static;
        margin: 1rem 0;
        animation: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2d5a27;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #4a7c59;
    transform: translateY(-3px);
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2d5a27;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a7c59;
}
.info-section {
  padding: 40px 20px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.info-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 24px;
  color: #3498db;
  min-width: 30px;
  margin-top: 5px;
}

.info-content h4 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.info-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}
