* { margin:0; padding:0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
html { scroll-behavior: smooth; }
body { background: #f4f7f6; overflow-x: hidden; }

/* NAVBAR */
.navbar { position: fixed; top:0; width:100%; min-height: 80px; background: white; z-index: 1000; display: flex; align-items: center; border-bottom: 1px solid #eee; padding: 10px 0; }
.nav-container { width: 95%; margin: auto; display: flex; justify-content: space-between; align-items: center; position: relative; }

.nav-left { flex: 1; display: flex; justify-content: flex-start; }
.nav-center { flex: 2; text-align: center; }
.nav-right { flex: 1; display: flex; justify-content: flex-end; }

.top-quote { font-style: italic; color: #888; font-size: 0.75rem; margin-bottom: 2px; }
.logo { color: #2C4E5E; font-size: 1.3rem; letter-spacing: 2px; font-weight: 800; }

.hamburger-menu {
    font-size: 1.6rem; color: #2C4E5E; cursor: pointer; padding: 8px 12px;
    border: 1px solid #ddd; border-radius: 5px; background: #f9f9f9;
    transition: 0.3s ease;
}
.hamburger-menu:hover { background: #eef2f5; transform: scale(1.05); }

/* SIDEBAR MENU */
.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); z-index: 9998; display: none; opacity: 0;
    transition: opacity 0.3s ease;
}
.sidebar-overlay.show { display: block; opacity: 1; }

.side-drawer {
    position: fixed; top: 0; left: -320px; width: 280px; height: 100vh;
    background: #1e1e24; z-index: 9999; display: flex; flex-direction: column;
    padding: 20px 15px; transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 4px 0 15px rgba(0,0,0,0.3);
}
.side-drawer.open { transform: translateX(320px); }

.drawer-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2a2a35; padding-bottom: 15px; margin-bottom: 20px; }
.drawer-title { color: #ffffff; font-size: 1.4rem; font-weight: 700; }
.close-drawer { font-size: 32px; color: #a0a0b0; cursor: pointer; transition: 0.2s; }
.close-drawer:hover { color: #ffffff; }

.drawer-links { display: flex; flex-direction: column; gap: 8px; }
.drawer-links a {
    text-decoration: none; color: #c0c0d0; font-weight: 600; font-size: 1.05rem;
    padding: 12px 15px; border-radius: 8px; display: flex; align-items: center;
    gap: 15px; transition: 0.2s ease;
}
.drawer-links a i { color: #2C4E5E; font-size: 1.2rem; width: 20px; text-align: center; }
.drawer-links a:hover { background: #2a2a35; color: #ffffff; padding-left: 20px; }

.location-btn { background: #2C4E5E; color: white; padding: 10px 18px; border-radius: 5px; text-decoration: none; font-weight: bold; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 5px; transition: 0.3s; }
.location-btn:hover { background: #1f3743; transform: translateY(-2px); }

/* HERO LAYOUT */
.hero { 
    width: 100%;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    text-align: center; 
    padding-top: 80px; 
    background: #eef2f5; 
    scroll-margin-top: 80px; 
}

.hero-img-box {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff; 
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

/* 🌟 Increased image size constraint */
.hero-logo-img {
    max-width: 850px; 
    width: 95%; 
    height: auto; 
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px 60px; 
    color: #333;
}

.hero h1 { 
    font-size: 2.8rem; 
    color: #2C4E5E; 
    line-height: 1.2; 
    font-weight: 800; 
    margin-bottom: 15px;
}

.hero-subtext { 
    color: #555; 
    font-size: 1.2rem; 
    font-weight: 500; 
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.explore-btn { 
    background: #2C4E5E; color: white; padding: 14px 35px; border-radius: 30px; 
    text-decoration: none; display: inline-block; margin-top: 30px; 
    font-weight: bold; font-size: 1rem; transition: 0.3s ease; 
    box-shadow: 0 4px 12px rgba(44, 78, 94, 0.3);
}
.explore-btn:hover { background: #1f3743; transform: translateY(-3px); }

/* SECTIONS */
.section { padding: 80px 5% 50px; text-align: center; scroll-margin-top: 80px; }
.section-title { font-size: 2rem; color: #2C4E5E; margin-bottom: 30px; position: relative; }
.section-title::after { content: ''; width: 60px; height: 4px; background: #2C4E5E; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); }
.white-bg { background: white; }

/* GALLERY GRID */
.video-container { max-width: 700px; margin: 0 auto 30px; }
.video-box { width: 100%; height: 350px; border-radius: 12px; overflow: hidden; }
video { width: 100%; height: 100%; object-fit: cover; background: black; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1000px; margin: auto; }
.gallery-item { border-radius: 12px; overflow: hidden; height: 250px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.gallery-item img:hover { transform: scale(1.05); }

/* LAYOUT */
.layout-wrapper { max-width: 1000px; margin: auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.layout-image-container { background: #f9f9f9; padding: 10px; border: 1px solid #ddd; border-radius: 15px; width: 100%; }
.layout-img { width: 100%; height: auto; border-radius: 10px; cursor: zoom-in; }
.layout-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; font-weight: 600; color: #2C4E5E; }

/* AMENITIES */
.amenities-bg { background: #f4f7f6; }
.amenities-container { max-width: 600px; margin: auto; display: flex; flex-direction: column; gap: 12px; }
.amenity-card { background: white; padding: 16px 25px; border-radius: 8px; display: flex; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: 0.3s; border-left: 4px solid #2C4E5E; }
.amenity-card:hover { transform: translateX(5px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.amenity-card i { font-size: 1.3rem; color: #2C4E5E; margin-right: 15px; width: 25px; text-align: center; }
.amenity-card span { font-weight: 600; font-size: 0.95rem; color: #333; }

/* ABOUT US */
.about-content { max-width: 800px; margin: auto; line-height: 1.8; color: #555; }
.social-container { margin-top: 30px; padding-top: 20px; border-top: 1px solid #ddd; }
.social-container h3 { font-size: 1.1rem; color: #2C4E5E; margin-bottom: 15px; }
.social-icons { display: flex; justify-content: center; gap: 15px; }
.social-btn { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: white; font-size: 1.2rem; transition: 0.3s ease; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); }
.fb { background: #1877F2; }
.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.yt { background: #FF0000; }
.x-twitter { background: #000000; } 
.wa { background: #25D366; }

/* 🌟 CENTERED CONTACT AREA */
.contact-area { 
    min-height: 50vh; 
    background: #111; 
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    overflow: hidden; 
    padding: 60px 20px; 
}

.contact-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.contact-title {
    color: white !important;
    margin-bottom: 40px;
}

.contact-title::after {
    background: white;
}

.glow-effect { position: absolute; width: 350px; height: 350px; background: #2C4E5E; filter: blur(150px); border-radius: 50%; opacity: 0.3; left: 50%; top: 50%; transform: translate(-50%, -50%); }

.contact-cards-flex { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
    justify-content: center; 
    width: 100%;
    max-width: 800px;
}

.c-card { background: rgba(255,255,255,0.05); padding: 25px 15px; border-radius: 15px; width: 260px; color: white; text-align: center; border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: 0.3s; }
.c-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.c-card i { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }

/* LIGHTBOX & MODALS */
.lightbox { display: none; position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.9); z-index: 2000; justify-content: center; align-items: center; }
.lightbox-img { max-width: 90%; max-height: 80%; border: 3px solid white; }
.close-lightbox { position: absolute; top: 20px; right: 40px; color: white; font-size: 60px; cursor: pointer; }
.modal-box { background: white; padding: 30px; border-radius: 15px; max-width: 500px; width: 90%; position: relative; }
.close-modal { position: absolute; top: 10px; right: 20px; font-size: 35px; cursor: pointer; color: #888; }

/* 🌟 ULTRA COMPACT FOOTER */
.footer-bar { 
    background: #0a0a0a; 
    color: #666; 
    padding: 10px 20px; 
    font-size: 0.75rem; 
    border-top: 1px solid #1a1a1a; 
}

.footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; flex-wrap: wrap; gap: 10px; }
.footer-links a { color: #2C4E5E; text-decoration: none; font-weight: 600; }

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    .logo { font-size: 1rem; }
    .top-quote { font-size: 0.6rem; }
    .hamburger-menu { font-size: 1.2rem; padding: 6px 10px; }
    .location-btn { font-size: 0.75rem; padding: 8px 12px; }
    
    .hero-logo-img { width: 98%; } 
    .hero h1 { font-size: 1.8rem; }
    .hero-subtext { font-size: 1rem; }
    .explore-btn { padding: 12px 25px; font-size: 0.9rem; }

    .video-box { height: 220px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-item { height: 140px; }
    .contact-area { padding: 40px 10px; }
    .c-card { width: 100%; }
    .footer-content { justify-content: center; text-align: center; }
}