/* Reset and Base Styles */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://res.cloudinary.com/dtqlztu2i/image/upload/v1753781042/courchevel-mountain-snow-winter_r1ao4w.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 180px; /* Increased padding to prevent text cutting into header */
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    width: 100%;
    z-index: 10;
    position: relative;
}

.hero-text {
    margin-bottom: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Enhanced Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto 3rem auto;
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.form-button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}



.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    /* Remove default browser icons for select only */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Keep calendar picker for date inputs */
.input-wrapper input[type="date"] {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

/* Hide the default browser calendar icon */
.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

.input-wrapper input[type="date"]::-webkit-inner-spin-button,
.input-wrapper input[type="date"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove default dropdown arrow for select elements only */
.input-wrapper select::-ms-expand {
    display: none;
}

/* Make calendar icon clickable for date inputs */
.input-wrapper input[type="date"] + i {
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
    position: relative;
    right: 1.2rem;
}

/* Keep dropdown icon non-clickable for select elements */
.input-wrapper select + i {
    pointer-events: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.input-wrapper i {
    position: absolute;
    right: 1.2rem;
    color: #666;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i {
    color: #e74c3c;
}

.check-availability-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    min-width: 200px;
}

.check-availability-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.check-availability-btn:active {
    transform: translateY(0);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h5 {
    color: #e74c3c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.more-about-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.more-about-btn:hover {
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Rooms Section */
.rooms {
    padding: 6rem 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.room-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.per-night {
    font-size: 1rem;
    color: #666;
}

.room-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.room-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.details-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.details-btn:hover {
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 4rem 0;
}

.video-gallery {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.video-thumbnail {
    position: relative;
    width: 400px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(231, 76, 60, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

.video-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: rgba(231, 76, 60, 0.8);
}

#modalVideo {
    width: 100%;
    height: auto;
    display: block;
}

.video-cta {
    text-align: center;
}

.book-now-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-2px);
}

/* Nearby Places Section */
.nearby-places {
    padding: 6rem 0;
    background: #f8f9fa;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.place-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.place-card:hover {
    transform: translateY(-10px);
}

.place-image {
    height: 200px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.1);
}

.place-content {
    padding: 1.5rem;
}

.place-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.place-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.read-more-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
}

.contact-item i {
    color: #e74c3c;
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .video-thumbnail {
        width: 300px;
        height: 180px;
    }
    
    .video-section {
        padding: 2rem 0;
    }
} 

/* Property Detail Page Styles */
.property-hero {
    padding: 120px 0 60px;
    background: #f8f9fa;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #e74c3c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.property-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

/* Property Gallery Styles */
.property-gallery {
    margin: 2rem 0;
}

.gallery-container {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 120px;
}

.gallery-thumbs img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
    border-color: #e74c3c;
}

.gallery-thumbs img.active {
    border-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.main-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Property Info Section */
.property-info {
    padding: 4rem 0;
}

.property-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.property-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.property-summary h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.property-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.property-price span {
    font-size: 1rem;
    color: #666;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.property-meta i {
    color: #e74c3c;
    width: 16px;
}

.property-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.property-description {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.property-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.property-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.property-includes,
.property-amenities {
    list-style: none;
    margin: 1.5rem 0;
}

.property-includes li,
.property-amenities li {
    padding: 0.5rem 0;
    color: #666;
}

.property-includes li:first-child,
.property-amenities li:first-child {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Property Contact Section */
.property-contact {
    padding: 4rem 0;
    background: #f8f9fa;
}

.property-contact h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.property-contact p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.contact-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-list i {
    color: #e74c3c;
    width: 20px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .property-summary {
        position: static;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .main-image {
        height: 300px;
    }
    
    .property-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .main-image {
        height: 250px;
    }
    
    .property-summary,
    .property-description {
        padding: 1.5rem;
    }
} 

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .booking-form {
        padding: 2rem;
        margin: 0 1rem 3rem 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    .check-availability-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .video-thumbnail {
        width: 350px;
        height: 220px;
    }
    
    .video-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .input-wrapper input,
    .input-wrapper select {
        padding: 0.8rem 2rem 0.8rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .check-availability-btn {
        min-width: 160px;
    }
} 

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .gallery-thumbs img {
        width: 80px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .main-image img {
        height: 300px;
    }
} 

/* AirBnb-style Gallery */
.airbnb-gallery {
    margin: 2rem 0;
}
.airbnb-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 0.75rem;
    border-radius: 18px;
    overflow: hidden;
}
.main-image {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
    height: 420px;
    background: #eee;
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 0 0 18px;
    transition: opacity 0.3s;
}
.side-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    height: 420px;
}
.side-image {
    position: relative;
    border-radius: 0 18px 0 0;
    overflow: hidden;
    background: #eee;
}
.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 18px 0 0;
    transition: opacity 0.3s;
    cursor: pointer;
}
.side-image:nth-child(2) img,
.side-image:nth-child(4) img {
    border-radius: 0 18px 0 0;
}
.side-image:nth-child(3) img {
    border-radius: 0 0 0 0;
}
.side-image:nth-child(4) img {
    border-radius: 0 0 18px 0;
}
.show-all-container {
    position: relative;
}
.show-all-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 12px;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}
.show-all-btn:hover {
    background: #f7f7f7;
}

/* Slider Modal for Gallery */
.slider-modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.slider-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.slider-arrow:hover {
    background: rgba(0,0,0,0.8);
}
.slider-arrow-left {
    left: -60px;
}
.slider-arrow-right {
    right: -60px;
}
#sliderImage {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .slider-arrow-left {
        left: 10px;
    }
    .slider-arrow-right {
        right: 10px;
    }
    .slider-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
} 

/* Enhanced Checkout Layout */
.checkout-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.checkout-left {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.checkout-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-form h2 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.checkout-form .form-group input,
.checkout-form .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus {
    outline: none;
    border-color: #e74c3c;
}

/* Payment Section */
.payment-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-section h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.radio-group label:hover {
    background-color: #f8f9fa;
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkout-left,
    .payment-section {
        padding: 1.5rem;
    }
} 

/* Policy Pages Styling */
.policy-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.policy-content p:first-child {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #333;
}

.policy-content h2 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.policy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
} 

/* Blog Pages Styling */
.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('assets/img1.jpeg') center/cover;
    padding: 6rem 0 4rem 0;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.blog-content {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.blog-article {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.table-of-contents {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid #e74c3c;
}

.table-of-contents h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #e74c3c;
}

.blog-section {
    margin-bottom: 3rem;
}

.blog-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e74c3c;
}

.blog-section h3 {
    color: #555;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-section p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.blog-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.blog-section li {
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.blog-cta {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.blog-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Blog Pages */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-article {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .blog-intro {
        font-size: 1.1rem;
    }
    
    .blog-section h2 {
        font-size: 1.5rem;
    }
    
    .blog-section h3 {
        font-size: 1.2rem;
    }
} 