@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background: #F8FAFC;
     font-family: 'Inter', sans-serif;
}

h1,h2,h3,p {
    cursor:default;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A2D50;
}

p {
    color: #4F5480;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}
.header {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-image:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),
     url(/img/Hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.logo h2 {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar {
    width: 100%;
    top: 0;
    background: #0A2D50;
    height: 6vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    z-index: 100;
}

.navlinks {
    display: flex;
    align-items: center;
    transition: left .5s ease;
}

.navlinks li {
    margin: 0 10px;
    font-size: 1.1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.navlinks li a {
    color: white;
    position: relative;
    transition: color .5s ease;
    font-weight: 600;
}

.navlinks li a::before {
    content: '';
    position: absolute;
    height: 4px;
    width:0px;
    background: orange;
    border-radius: 5px;
    bottom: -2px;
    transition: width .6s ease;

}

.navlinks li a:hover::before,.navlinks li a:hover {
    width: 100%;
    color: orange;
}

.toggle-btn{
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
    z-index: 100;
   
    display: none;
}

.toggle-btn .bar {
    display: block;
    margin: 5px 0;
    width: 35px;
    height: 5px;
    border-radius: 3px;
    background: white;
}

@media (max-width:800px){
    .toggle-btn{
        display: block;
    }

    .navlinks {
        position: fixed;
        top:8% ;
        left: -300px;
        height: auto;
        width: 250px;
        padding: 20px;
        background-color: #1e90ff;
        flex-direction: column;
        align-items: start;
        border-radius: 0 10px 10px 0;
        
    }

     .navlinks li {
        margin:20px;
     }

       .navlinks.active{
        left: 0;
       }
}

/* hero */

.hero-container {
    flex: 1;
    width: 100%;
     padding: 0 5%;
    display: grid;
    place-content: center;
    text-align: center;
}




.hero-text h1 {
    color: white;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    margin-bottom:10px ;

}

.hero-text p {
    color: white;
     margin-bottom:10px ;
}

.hero-text .hero-btn {
    outline: none;
    width: 150px;
    border: none;
    color: whitesmoke;
    background: #1e90ff;
    padding: 8px 20px;
    font-size:1rem ;
    border-radius: 5px;
    transition: background .3s ease-in;

}

.hero-text .hero-btn:hover {
    background-color:#0A2D50;
    
}

/* our-story */
.our-story {
    padding: 2rem;
    width: 100%;
}

.our-story-container {
    margin-top: 3rem;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    place-items: center;
    gap: 50px;
    padding-bottom: 30px;
}

.our-story-text p {
    line-height: 2;
    font-size: 1.1rem;
}

.our-story-container img {
    max-width: 100%;
    margin: auto;
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Amenitis */

.amenities {
     padding: 2rem;
     width: 100%;
     background: #C5C5C5;
}



.amenities-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
     gap: 20px;

}
 .amenities-card {
            padding: 30px 20px;
            border-radius: 12px;
            background: white;
            height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border: 1px solid #e6f0ff;
        }

        .amenities-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(30, 144, 255, 0.1);
            border-color: #1e90ff;
        }

        .amenities-card svg {
            stroke: #1e90ff;
            width: 3rem;
            height: 3rem;
        }

        .amenities-card p {
            color: #0A2D50;
            font-weight: 600;
            font-size: 1.1rem;
        }

          /* Our Story Section */
        .our-story {
            padding: 5rem 2rem;
            width: 100%;
            background: white;
        }

        .our-story h2 {
            margin-bottom: 2rem;
        }

        .our-story-container {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            place-items: center;
            gap: 60px;
            padding-bottom: 30px;
        }

        .our-story-text p {
            color: #4F5480;
            line-height: 1.8;
            font-size: 1.2rem;
            max-width: 600px;
        }

        .our-story-container img {
            max-width: 100%;
            margin: auto;
            width: 100%;
            display: block;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }

        .our-story-container img:hover {
            transform: scale(1.02);
        }



        /* Testimonials Section */
        .testimonials {
            padding: 5rem 1rem;
            width: 100%;
            background: white;
            position: relative;
            overflow: hidden;
            display: grid;
            place-content: center;
        }

    
        .testimonials-container {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
        }

        .testimonial-card {
            background: #f8fbff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border: 1px solid #e6f0ff;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(30, 144, 255, 0.1);
        }

        .testimonial-rating svg {
        fill: #ff8c00;
        width: 20px;
        height: 20px;
            
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
           overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

              .testimonial-avatar img {
                width: 100%;
                display: block;
                height: 100%;
                object-fit: cover;

              } 
        .testimonial-author-info h4 {
            color: #0A2D50;
            font-weight: 600;
        }

        .testimonial-author-info p {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

       

/* Booking */

  .booking {
    display: grid;
    place-content: center;
    padding: 1rem;
     }

        .booking-container {
            padding: 20px;
            width: 100%;
            max-width: 1000px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(30, 144, 255, 0.08);
            overflow: hidden;
            border: 1px solid #e6f2ff;
        }

       .booking-container h2 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 20px;
            font-weight: 700;
        }

      

        /* Form Layout */
        .booking-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #0A2D50;
            font-size: 15px;
            letter-spacing: 0.3px;
        }

        .form-icon {
            position: relative;
            left: 18px;
           
            color: #1e90ff;
            z-index: 2;
            stroke-width: 2.2;
            transition: color 0.3s ease;
        }

        input, select, textarea {
            width: 100%;
            padding: 10px 20px 10px 50px;
            border: 2px solid #e0f0ff;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8fbff;
            color: #0A2D50;
            font-weight: 500;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #1e90ff;
            background-color: white;
            box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.15);
        }

        input:hover, select:hover, textarea:hover {
            border-color: #b3d7ff;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
            padding-left: 50px;
        }

        select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e90ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 18px;
            padding-right: 50px;
            cursor: pointer;
        }

        /* Validation States */
        .error-message {
            color: #ff4757;
            font-size: 14px;
            margin-top: 8px;
            min-height: 20px;
            display: none;
            font-weight: 500;
        }

        .error {
            border-color: #ff4757 !important;
        }

        .error:focus {
            box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.15) !important;
        }

        .success {
            border-color: #2ecc71 !important;
            background-color: #f8fff9;
        }

        .success:focus {
            border-color: #27ae60 !important;
            box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.15) !important;
        }

        /* Submit Button */
        .submit-btn {
            grid-column: span 2;
            background:#0A2D50 ;
            color: white;
            border: none;
            padding: 20px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50px;
            margin-top: 10px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
        }

         .submit-btn svg {
            margin-right: 10px;
         }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
            background: #1e90ff 100%;
        }

        .submit-btn:active:not(:disabled) {
            transform: translateY(-1px);
        }

        .submit-btn:disabled {
            background: linear-gradient(135deg, #a0c8ff 0%, #7a9bc2 100%);
            cursor: not-allowed;
            opacity: 0.8;
            box-shadow: none;
        }

        .btn-text {
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spinner {
            display: none;
            width: 24px;
            height: 24px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
            position: absolute;
        }

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

        .submitting .btn-text {
            opacity: 0;
        }

        .submitting .spinner {
            display: block;
        }

        /* Confirmation Message - FIXED ICON ISSUES */
        .confirmation-message {
            text-align: center;
            padding: 40px 30px;
            display: none;
            background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
            border-radius: 12px;
            border: 2px solid #e6f2ff;
            animation: fadeIn 0.6s ease;
        }

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

        .confirmation-message svg {
              width: 40px;
            height: 40px;
            fill: #2ecc71;

        }
        .confirmation-icon {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
            border: 3px solid #2ecc71;
        }

        

        .confirmation-message h3 {
            color: #0A2D50;
            margin-bottom: 20px;
            font-size: 28px;
            font-weight: 700;
        }

        .confirmation-message p {
            
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Storage Status */
        .storage-status {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            font-size: 14px;
            color: #4F5480;
            background: #f0f8ff;
            padding: 12px 20px;
            border-radius: 10px;
            border-left: 4px solid #1e90ff;
        }

        .storage-status svg {
    
            stroke: #1e90ff;
        }

        .storage-status.saving {
            color: #1e90ff;
            border-left-color: #1e90ff;
        }

        .storage-status.saved {
            color: #2ecc71;
            border-left-color: #2ecc71;
        }

        .clear-storage-btn {
            background: none;
            border: 2px solid #ff8c00;
            color: #ff8c00;
            cursor: pointer;
            font-size: 13px;
            padding: 6px 14px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 600;
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .clear-storage-btn:hover {
            background-color: #ff8c00;
            color: white;
        }

        /* New Booking Button in Confirmation */
        #newBookingBtn {
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
            margin-top: 30px;
            width: auto;
            padding: 15px 40px;
            display: inline-flex;
        }

        #newBookingBtn:hover {
            background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .booking-container {
                padding: 40px 30px;
            }
            
            .booking-form {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .submit-btn {
                grid-column: span 1;
            }
            
            h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 600px) {
            .booking-container {
                padding: 30px 20px;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            input, select, textarea {
                padding: 14px 16px 14px 45px;
            }
            
            .form-icon {
                top: 38px;
                left: 15px;
            }
            
            .storage-status {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .clear-storage-btn {
                margin-left: 0;
                width: 100%;
                justify-content: center;
            }
        }

        /* Animation for form elements */
        .form-group {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }
        .form-group:nth-child(6) { animation-delay: 0.6s; }
        .form-group:nth-child(7) { animation-delay: 0.7s; }
        .form-group:nth-child(8) { animation-delay: 0.8s; }

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

        /* Character counter */
        .char-counter {
            text-align: right;
            font-size: 13px;
            color: #7f8c8d;
            margin-top: 5px;
        }

        .char-counter.warning {
            color: #ff8c00;
        }

        .char-counter.error {
            color: #ff4757;
        }
        

        /* Newsletter Section */
        .newsletter {
            padding: 5rem 2rem;
            width: 100%;
            background: linear-gradient(135deg, #0A2D50 0%, #1e90ff 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126,97,0,0,0,0v100h1000V0C1000,0,874,97,500,97z" fill="%23ffffff" opacity="0.05"/></svg>');
            background-size: 100% 100px;
            background-repeat: no-repeat;
            background-position: bottom;
        }

        .newsletter h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: white;
        }

        .newsletter p {
            color: whitesmoke;
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.95);
            color: #0A2D50;
            font-weight: 500;
        }

        .newsletter-input:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .newsletter-btn {
            padding: 18px 40px;
            background: #ff8c00;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: #ff6b00;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
        }

        /* Add these to your existing newsletter CSS */

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.newsletter-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3),
                0 5px 20px rgba(10, 45, 80, 0.1);
}

.newsletter-btn {
    /* Keep existing styles and add: */
    position: relative;
    overflow: hidden;
}

.newsletter-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.newsletter-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

        @media (max-width: 768px) {
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-btn {
                width: 100%;
            }
        }

        /* Footer */
        .footer {
            background: #0A2D50;
            color: white;
            padding: 5rem 2rem 2rem;
            position: relative;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 5px;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 20px;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: #ff8c00;
            transform: translateX(5px);
        }

        .footer-links svg {
            stroke: #ff8c00;
            
        }

        .footer-contact li {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

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

        .social-icon:hover {
            background: #ff8c00;
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
           
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #ff8c00;
            text-decoration: underline;
        }

        /* Luxury decorative elements */
        .luxury-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #ff8c00, transparent);
            margin: 40px auto;
            max-width: 200px;
        }

        .floating-element {
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(255, 140, 0, 0.1));
            border-radius: 50%;
            filter: blur(40px);
            z-index: -1;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 5%;
        }

        .floating-element:nth-child(2) {
            bottom: 10%;
            right: 5%;
        }

        /* ----------------- About-page ---------------------- */
     
        .about {
            margin-top: 10vh;
        }
        .about-text p {
            padding: 2rem 6%;
            text-align: center;
            line-height: 2;
            font-size: 1.1rem;

        }

        .vision {
        
            margin-top: 1rem;

        }

        .vision-container {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
            gap: 30px;
            padding:  2rem;
        }

        .vision-container img {
            border-radius: 10px;
            height: 100%;
        }

        .vision-text p {
            font-size: 1.2rem;
            margin-top: 20px;
            line-height: 2;
        }

        .vision-text {
            place-content: center;
        }

          .vision>p {
            padding: 2rem 6%;
            text-align: center;
            line-height: 2;
            font-size: 1.2rem;
            margin-bottom: 20px;
          }

          /* --------- facilities ---------- */

          .area {

               background: #C5C5C5;
               padding: 3rem 0;
          }

          .area-container {
         
            padding: 0 2rem;
            margin-top: 3rem;
            display: grid;
           grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
           gap: 30px;
         
          }

          .area-card {
              border: 2px solid #1e90ff;
              padding: 10px 10px  30px 10px;
              border-radius: 10px;
              background: white;
          }
        .area-card img {
            border-radius: 10px;
            overflow: hidden;
        }

        .area-title {
            margin: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 10px;
        }

         .area-title svg {
            stroke: #1e90ff;
            width: 30px;
            height: 30px;
         }

        .area-card >p {
            color: #0A2D50;
            padding: 0 10px;
        }

        /* -------- team ------- */

        .team {
            padding: 5rem 2rem;
        }

        .team >p {
            text-align: center;
        }

        .team-container {
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
            gap: 30px;
        }

     
        

        .team-img img {
            height: 180px;
            width: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: auto;
            border: 4px solid #0A2D50;
            padding: 10px;
         }

          .team-card {
            text-align: center;
          }

         .team-card h4 {
            padding: 10px 0;
            font-size: 1.4rem;
         }

         .team-card span {
            color: #1e90ff;
            margin-bottom: 20px;
         }

         .team-card p {
            margin-top: 10px;
         }

         /* ----------- Rooms-Page ---------- */

         .header-rooms {
            background-image:linear-gradient(rgba(13, 106, 212, 0.1),rgba(54, 114, 245, 0.1)),
     url(/img/Rooms-bg.jpg); 
   
 
         }

          .header-rooms .hero-text h1 {
    color: #0A2D50;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    margin-bottom:10px ;

}


 .header-rooms .hero-text p {
    color:white;
        margin: 0 10%;
     margin-bottom:10px ;
     font-size: 1.2rem;
     background-color: #1e90ff;
     padding: 10px;
     border-radius: 2rem;
     line-height: 2;
}

.rooms {
    padding: 5rem 2rem;
}

.rooms-container {
   
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 4rem 0 0 0;
    

}

.rooms-img {
    width: 100%;
    height: 100%;
    min-width: 310px;
    border-radius: 10px;
    overflow: hidden;
   
}

.rooms-text h3 {
    color: #0A2D50;
    font-size: 2rem;
    margin-bottom: 10px;
}

.room-feature {
    width:100%;
    min-width: 300px;
    margin-top: 10px;
    display: grid;
    grid-template-columns:repeat(2, 1fr) ;
    gap: 10px;
}

.room-items {
    display: flex;
 margin: 0 20px;
    gap: 15px;
    align-items: center;
}

.room-items svg {
    height: 30px;
    width: 30px;
    stroke: #1e90ff;
}

.room-items:nth-child(5)  {

   
   grid-column: span 2;
   gap: 28%;
  

   
}

.room-items:nth-child(5) .price {
        background: #a0c8ff;
         border-radius: 10px;
    padding: 10px;
        width: 150px;

}

.room-items:nth-child(5) span {
    display: flex;
    align-items: end;
    gap: 5px;
}

.room-items:nth-child(5) span h4 {
    font-size: 2rem;
}

.room-items:nth-child(5) button {
    width: 150px;
    height: 30px;
    outline: none;
    border: none;
    background-color: #1e90ff;
    border-radius: 20px;
   
}

@media (max-width:800px){

    .rooms-container:nth-child(1),  .rooms-container:nth-child(3){
        flex-direction: column-reverse;
    }
 .rooms-container:nth-child(2) {
    flex-direction: column;
 }

 .room-items:nth-child(5)  {

   

   gap: 15%;

   
}

.room-feature {
    margin-top: 20px;
   
}

}

/* --------------------- Gallary Page ---------------- */

.gallary { 
    margin-top: 10vh;
    padding: 10px 3rem;
   

}

.gallary h2 {
    text-align: left;
}

.gallary p {
    letter-spacing: 2px;
    line-height: 2;
}

.filter {
    margin-top: 1.2rem;
}

.filter {
    
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    
}

.filter button {
    padding: 8px 15px;
    outline:none ;
    color: #ffffff;
    font-size: 1rem;
    border: none;
    background-color: #1e90ff;
    border-radius:5px ;
     transition: background .3s ease, color .3s ease;
}

.gallary hr {
    margin: 30px 0;
}




.filter button.active {
    background: #000;
    color: #fff;
}

/* GALLERY GRID */
.gallary-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    padding-bottom: 3rem;
}

/* IMAGES */
.gallary-container img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .4s ease, opacity .4s ease;
}

.gallary-container img:hover {
    transform: scale(1.03);
}

/* HIDE FOR FILTER (grid collapses) */
.gallary-container img.hide {
    display: none;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    cursor: zoom-out;
}


/* --------- contact-page ---------- */


    
        .header-contact {
            display: flex;
            flex-direction: column;
            position: relative;
            height: 60vh;
            width: 100%;
            
            background: linear-gradient(rgba(10, 45, 80, 0.4), rgba(10, 45, 80, 0.4)), url(/img/About.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

     

        /* Hero Section */
        .hero-container {
            flex: 1;
            width: 100%;
            padding: 0 5%;
            display: grid;
            place-content: center;
            text-align: center;
            margin-top: 60px;
        }

        .hero-text h1 {
            color: white;
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .hero-text p {
            color: white;
            margin-bottom: 10px;
            font-size: clamp(1rem, 3vw, 1.2rem);
            opacity: 0.9;
            padding: 0 10px;
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 1rem;
            width: 100%;
            background: #F8FAFC;
            max-width: 100%;
            overflow: hidden;
        }
        
        .contact-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            padding: 0 10px;
        }

        .contact-section > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 20px;
            padding: 0 15px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 15px;
            width: 100%;
        }

        /* Contact Form */
        .contact-form-box {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(30, 144, 255, 0.08);
            border: 1px solid #e6f2ff;
            width: 100%;
            max-width: 100%;
        }

        .contact-form-title {
            color: #0A2D50;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

    
        .form-group {
            position: relative;
            margin-bottom: 10px;
            width: 100%;
        }

        .form-label {
            display: block;
          
            font-weight: 600;
            color: #0A2D50;
            font-size: 14px;
        }

        .form-icon {
            position: absolute;
            left: 10px;
            top: 40px;
            color: #1e90ff;
            z-index: 2;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 14px 15px 14px 45px;
            border: 2px solid #e0f0ff;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8fbff;
            color: #0A2D50;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            max-width: 100%;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #1e90ff;
            background-color: white;
            box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.15);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            max-width: 100%;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e90ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            padding-right: 45px;
            cursor: pointer;
        }

        /* Submit Button */
        .submit-button {
            background: #0A2D50;
            color: white;
            border: none;
            padding: 16px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
            background: #1e90ff;
        }

        /* Contact Information */
        .contact-info-box {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(30, 144, 255, 0.08);
            border: 1px solid #e6f2ff;
            width: 100%;
            max-width: 100%;
        }

        .contact-info-title {
            color: #0A2D50;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

    

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            width: 100%;
        }

        .info-icon {
            background: #0A2D50;
            color: white;
            width: 40px;
            height: 40px;
           
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
          
        }

        .info-text h4 {
            color: #0A2D50;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-text p {
            color: #4F5480;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* Business Hours */
        .business-hours {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #e6f2ff;
            width: 100%;
        }

        .business-hours h4 {
            color: #0A2D50;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
            flex-wrap: wrap;
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .day-text {
            color: #0A2D50;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .time-text {
            color: #4F5480;
            font-size: 0.9rem;
        }

        /* Social Links */
        .social-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #e6f2ff;
            width: 100%;
        }

        .social-title {
            color: #0A2D50;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .social-icons-container {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #f0f8ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A2D50;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            color: white;
        }

        .facebook-icon:hover {
            background-color: #3b5998;
        }

        .twitter-icon:hover {
            background-color: #1da1f2;
        }

        .instagram-icon:hover {
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
        }

        .linkedin-icon:hover {
            background-color: #0077b5;
        }

        

        /* FAQ Section */
        .faq-section {
            padding: 3rem 1rem;
            width: 100%;
            background: white;
            max-width: 100%;
            overflow: hidden;
        }
        
        .faq-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            padding: 0 10px;
        }

        .faq-section > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 20px;
            padding: 0 15px;
        }

        .faq-container {
            max-width: 1000px;
            margin: 2rem auto 0;
            width: 100%;
            padding: 0 15px;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e6f2ff;
            border-radius: 12px;
            overflow: hidden;
            background: #f8fbff;
            width: 100%;
        }

        .faq-question {
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: white;
            transition: all 0.3s ease;
        }

        .faq-question h4 {
            color: #0A2D50;
            font-size: 1.1rem;
            font-weight: 600;
            flex: 1;
            padding-right: 15px;
        }

        .faq-question svg {
            stroke: #1e90ff;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active {
            background: #f0f8ff;
        }

        .faq-question.active svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #4F5480;
            line-height: 1.6;
            font-size: 0.95rem;
        }

       

        /* Form Messages */
        .form-message {
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
            font-weight: 500;
            font-size: 0.9rem;
            width: 100%;
        }

        .form-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .form-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        .required-field {
            color: #ff4757;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header-contact {
                height: 50vh;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .contact-form-box, .contact-info-box {
                padding: 25px 20px;
            }
            
            .contact-section, .faq-section, .map-section {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .hero-container {
                padding: 0 3%;
            }
            
            .info-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .info-icon {
                margin-bottom: 10px;
            }
        }

        @media (max-width: 600px) {
            .contact-section, .faq-section {
                padding: 2rem 1rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .contact-form-title, .contact-info-title {
                font-size: 1.3rem;
            }
            
            .social-icons-container {
                justify-content: center;
            }
            
            .hours-item {
                flex-direction: column;
                gap: 5px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .map-placeholder {
                height: 250px;
            }
            
            .map-title {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 400px) {
            .contact-container {
                padding: 0 10px;
            }
            
            .contact-form-box, .contact-info-box {
                padding: 20px 15px;
            }
            
            .form-input, .form-select, .form-textarea {
                padding: 12px 12px 12px 40px;
                font-size: 15px;
            }
            
            .form-icon {
                left: 12px;
                top: 38px;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .max-width-800 {
            max-width: 800px;
        }

        .margin-auto {
            margin: 0 auto;
        }

        .margin-bottom-20 {
            margin-bottom: 20px;
        }

        .flex-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .flex-column {
            flex-direction: column;
        }

        .relative-position {
            position: relative;
        }