/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header & Navigation */
.navbar {
    background: #0f2027;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h2 {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
}

.logo span {
    color: #ff9900;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    padding: 5px 10px;
    display: inline-block;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #ff9900;
    border-bottom: 2px solid #ff9900;
}

.btn-book {
    background: #ff9900;
    padding: 8px 18px !important;
    border-radius: 4px;
    color: #fff !important;
    border-bottom: none !important;
}

.btn-book:hover {
    background: #e68a00 !important;
}

/* Hide Mobile Toggle Checkbox & Label by default */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200') center/cover;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Form Styles */
.form-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 40px auto;
    max-width: 600px;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.btn-submit {
    background: #0f2027;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #ff9900;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Footer Styling */
.footer {
    background: #0f2027;
    color: #fff;
    padding: 50px 0 10px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-box h3, 
.footer-box h4 {
    color: #ff9900;
    margin-bottom: 15px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

.footer-box ul li a:hover {
    color: #ff9900;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* Sticky Action Buttons */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-btn { background: #25D366; }
.call-btn { background: #007bff; }
.float-btn:hover { transform: scale(1.1); }


/* MOBILE & TABLET RESPONSIVE MEDIA QUERIES */

@media screen and (max-width: 868px) {
    
    /* Toggle Mobile Menu */
    .nav-toggle-label {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f2027;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
    }

    /* Open Menu When Checked */
    .nav-toggle:checked ~ .nav-menu {
        max-height: 400px;
        border-top: 1px solid #203a43;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .form-card {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        width: 95%;
    }

    .logo h2 {
        font-size: 18px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
/* Service Page Specific Styles */
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ff9900;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff3e0;
    color: #ff9900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 15px;
}

.service-card h3 {
    font-size: 20px;
    color: #0f2027;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Service Card Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.btn-card-book {
    flex: 1;
    background: #0f2027;
    color: #fff;
    padding: 9px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-card-book:hover {
    background: #ff9900;
}

.btn-card-call, .btn-card-wa {
    width: 38px;
    height: 38px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.btn-card-call { background: #007bff; }
.btn-card-call:hover { background: #0056b3; }

.btn-card-wa { background: #25D366; }
.btn-card-wa:hover { background: #1eb954; }
/* Gallery Page CSS */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 230px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(15, 32, 39, 0.9));
    color: #fff;
    padding: 20px 15px 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay h4 {
    font-size: 15px;
    color: #ff9900;
}

/* Hover Effects */
.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

@media screen and (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
    .gallery-card {
        height: 170px;
    }
    .gallery-overlay {
        transform: translateY(0);
        padding: 10px;
        background: rgba(15, 32, 39, 0.7);
    }
    .gallery-overlay h4 {
        font-size: 13px;
    }
}
/* CSS-Only Slider Styles */
.slider-container {
    width: 100%;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideAnimation 15s infinite ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6);
}

.slide1 { background-image: url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?w=1400'); }
.slide2 { background-image: url('https://images.unsplash.com/photo-1595815771614-ade9d652a65d?w=1400'); }
.slide3 { background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1400'); }

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Keyframe for Auto Sliding */
@keyframes slideAnimation {
    0% { transform: translateX(0%); }
    30% { transform: translateX(0%); }
    33% { transform: translateX(-33.33%); }
    63% { transform: translateX(-33.33%); }
    66% { transform: translateX(-66.66%); }
    96% { transform: translateX(-66.66%); }
    100% { transform: translateX(0%); }
}

@media screen and (max-width: 768px) {
    .slider-container { height: 50vh; }
    .slide-content h1 { font-size: 1.8rem; }
    .slide-content p { font-size: 1rem; }
}