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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.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);
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
}

.nav-brand i {
    font-size: 24px;
    color: #158183;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

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

.nav-link:hover {
    color: #2563eb;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    text-align: center;
    padding: 80px 20px 20px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size:larger;
}

.logo {
    margin-bottom: 32px;
}

.logo img {
    width: clamp(150px, 20vw, 300px);
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: #158183;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-text {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-text.large {
    font-size: 20px;
    color: #374151;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f9fafb;
}

.carousel-container {
    max-width: 1000px;
    margin: 0 auto 80px;
    animation: fadeInUp 0.8s ease-out;
}

.carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Add responsive styles for mobile */
@media (max-width: 768px) {
    .carousel {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 250px;
    }
}

.review-carousel-container {
    max-width: 1000px;
    margin: 0 auto 80px;
    animation: fadeInUp 0.8s ease-out;
}

.review-carousel {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
}

.review-carousel-track {
    display: flex;
    height: 100%;
    gap: 20px;
    padding: 0 20px;
    transition: transform 0.5s ease-in-out;
}

.review-carousel-slide {
    min-width: calc((100% - 40px) / 3);
    height: 100%;
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
    background: transparent;
    aspect-ratio: 16/9;
}

.review-carousel-slide.active {
    opacity: 1;
}

.review-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.review-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1f2937;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.review-carousel-btn.prev {
    left: 20px;
}

.review-carousel-btn.next {
    right: 20px;
}

.review-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active,
.review-dot:hover {
    background: #2563eb;
    transform: scale(1.2);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1f2937;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #158183;
    transform: scale(1.2);
}

/* Amenities */
.amenities-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 32px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.amenity-item i {
    font-size: 32px;
    color: #158183;
    margin-bottom: 12px;
}

.amenity-item span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-align: center;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: #ffffff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.location-text .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.location-description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.address-box {
    background: #f9fafb;
    padding: 24px;
    border-radius: 16px;
    margin: 32px 0;
}

.address-box h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-box h4 i {
    color: #158183;
}

.address-box p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn.airbnb {
    background: #ff5a5f;
    color: white;
}

.contact-btn.airbnb:hover {
    background: #e04e53;
    transform: translateY(-2px);
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.map-container {
    display: flex;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 320px;
    background: #f3f4f6;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Add these styles to your existing review carousel section */
.review-carousel-container {
    max-width: 1000px;
    margin: 0 auto 80px;
    animation: fadeInUp 0.8s ease-out;
}

.review-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-carousel-slide {
    min-width: 33.333%;
    padding: 10px;
}

.review-carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Add these media queries for mobile responsiveness */
@media (max-width: 768px) {
    .review-carousel-slide {
        min-width: 100%;
    }
    
    .review-carousel-track {
        transform: translateX(calc(-100% * var(--current-slide, 0)));
    }
    
    .review-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .review-carousel-btn.prev {
        left: 10px;
    }
    
    .review-carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .map-placeholder {
        height: 280px;
    }
    
    .address-box {
        padding: 16px;
        margin: 24px 0;
    }
    
    .address-box p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .map-placeholder {
        height: 240px;
    }
    
    .address-box {
        padding: 12px;
        margin: 20px 0;
    }
}

.map-placeholder iframe {
    font-size: 64px;
    color: #158183;
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.map-placeholder span {
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0;
    text-align: center;
}

.footer-content {
    animation: fadeInUp 0.8s ease-out;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-brand img {
    color: #158183;
     width: clamp(15px, 20vw, 30px);
}

.footer-content > p {
    color: #9ca3af;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
    }
    
    .carousel {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 80px 16px 20px;
    }
    
    .about-section,
    .gallery-section,
    .location-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 32px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}