/* About Page Specific Styles */

/* Hero Section - About Page */
.about-hero {
    background-color: #0a1e5e;
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-hero-text {
    flex: 1;
    padding-right: 30px;
}

.about-hero-image {
    flex: 1;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.about-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero h1 span {
    color: #ff6600;
    font-weight: 700;
}

.about-hero p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Hero Section - Hotel Pages */
.hotel-hero {
    background-color: #0a1e5e;
    color: white;
    padding: 60px 0;
    overflow: hidden;
}

.hotel-hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hotel-hero-text {
    flex: 1;
    padding-right: 20px;
}

.hotel-hero-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.hotel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hotel-hero p {
    font-size: 16px;
    line-height: 1.6;
}

/* Hotel Search Section */
.hotel-search {
    padding: 50px 0;
}

.mission-section {
    padding: 60px 0;
    position: relative;
}

.mission-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mission-text,
.values-content {
    border-radius: 26px;
background: #08004C;
padding: 20px;
color: #fff;
margin: 20px 0;
width: 60%;
position: relative;
z-index: 3;
}

.search-form-container {
    background-color: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-form-content {
    display: flex;
    align-items: stretch;
}

.search-form-left {
    flex: 0 0 35%;
    clip-path: circle(70% at 0 50%);
    overflow: hidden;
}

.search-decoration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-form-right {
    flex: 0 0 65%;
    padding: 30px;
}

.search-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-form-header h2 {
    font-size: 22px;
    color: #333;
    margin: 0;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.powered-by img {
    height: 18px;
}

.hotel-search-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.hotel-search-form .form-group {
    margin-bottom: 15px;
}

.hotel-search-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.hotel-search-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.search-hotels-btn {
    width: 100%;
    padding: 15px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.search-hotels-btn:hover {
    background-color: #e55a00;
}

/* Hotel Listings */
.hotel-listings {
    padding: 50px 0;
}

.hotel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hotel-card {
    background-color: #0a1e5e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.hotel-image {
    height: 200px;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #ff6600;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    position: relative;
    top: -15px;
    left: 15px;
    width: fit-content;
}

.rating-score {
    font-weight: bold;
    font-size: 16px;
}

.rating-text {
    font-size: 14px;
}

.hotel-info {
    padding: 0;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.hotel-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.amenity {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.hotel-more-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    color: white;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: auto;
}

.hotel-more-btn:hover {
    background-color: #e55a00;
}

/* Footer Adjustments */
.footer-middle {
    text-align: center;
    margin-bottom: 20px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-legal a {
    
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6600;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
   
}

.social-icon img {
    width: 100%;
    height: 100%;
}

.footer-address {
    text-align: center;
    margin-bottom: 20px;
}

.footer-address p {
    margin-bottom: 5px;
}

.footer-copyright {
    text-align: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 0;
    overflow: hidden;
}

.contact-content {
    display: flex;
    height: calc(100vh - 70px);
    min-height: 600px;
}

.contact-info {
    flex: 1;
    background-color: #0a1e5e;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.contact-image {
    flex: 1;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    max-width: 600px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background-color: white;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: none;
    border-radius: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.send-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background-color: #e55a00;
}

@media (max-width: 992px)  {
    .hotel-hero-content,
    .about-hero-content,
    .contact-content,
    .hotel-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
       .mission-text,
.values-content {
    width: 100%;
}
.contact-image {
    width: 100%;
}
}