/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.btn {
  color: #ffffff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease; 
  text-decoration: none;
}
.btn:hover {
  opacity: 0.9;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0 0 0;
    background-color: transparent;
    transition: all 0.4s ease;
    z-index: 1000;
}
.logo {
    position: relative;
    display: inline-block;
}
.logo img {
    height: 70px; /* Adjust to your logo size */
    width: auto;
    transition: opacity 0.3s ease;
}
.logo-default {
    opacity: 1;
}
.logo-scrolled {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* When header is scrolled */
.header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo-default {
    opacity: 0;
}

.header.scrolled .logo-scrolled {
    opacity: 1;
}

/* Header styles when scrolled */
.header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo,
.header.scrolled .navigation a {
    color: #000;
}

/* Hero section to show through transparent header */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}   

nav {
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 5px 0;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}
/* Banner Section */
.banner {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}
/* Booking Container */
.booking-container {
    position: absolute;
    bottom: -50px;
    border: 1px solid #cbcbcb;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    z-index: 10;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

#book-btn {
    margin-left: 3em;
}

.book-btn:hover {
    background-color: #ff5252;
}

/* About Property Section */
#about-property {
    background: #ffffff;
    margin-top: 6rem;
}

.property-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.property-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.property-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.property-image img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Why Book Section - 4 Columns */
#why-book {
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #7e81e7;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    font-size: 1rem;
    color: #f1f1f1;
    line-height: 1.6;
}

/* Gallery Section with Lightbox */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #3498db;
}

.lightbox-caption {
    color: white;
    margin-top: 20px;
    text-align: center;
    max-width: 80%;
}
/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    padding: 40px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 3px;
    background: #ffffff;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: #f9ff00;
    margin-right: 15px;
    margin-top: 3px;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
}
.popup-message {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e0f7e9;
  color: #2e7d32;
  border: 2px solid #81c784;
  padding: 20px 30px;
  border-radius: 10px;
  font-weight: bold;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: fadeInOut 5s ease-in-out forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group 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='currentColor' stroke-width='2' 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: 15px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.loading-icon {
    display: none;
    margin-left: 10px;
}

.btn .loading-icon.active {
    display: inline-block;
}

#formStatus {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

#formStatus.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

#formStatus.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.3);
}


/* Single Price Section */
.pricing-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates parallax effect */
}

.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    z-index: 1;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}
.single-price-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.price-header {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    padding: 30px;
    text-align: center;
}

.price-header h2 {
    color: #ffe202;
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.price-tag {
    margin-top: 10px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}
.amount-ed{
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9202;
}
.period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.price-details {
    padding: 20px 40px 40px 40px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #3498db;
    margin-right: 12px;
    font-size: 1.2rem;
}

.price-cta {
    text-align: center;
}

.note {
    margin-top: 15px;
    color: #7f8c8d;
    font-size: 0.9rem;
}
/* Reviews Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #e1e0e0;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.reviews-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.review-slide {
    padding: 0 15px;
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.review-slide.active {
    display: block;
}

.review-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    margin: 0 20px;
}

.rating {
    color: #f1c40f;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}


.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
}

.author-info h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.author-info p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.slider-nav button {
    display: none!important;
}
.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #3498db;
    transform: scale(1.2);
}


/* Contact Section */
#contact {
    padding-bottom: 100px;
    background: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details i {
    margin-right: 15px;
    color: #3498db;
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
}

.footer {
  background-color: #2b2b2b;
  color: #ccc;
  text-align: center;
  padding-top: 80px;
}

.phone {
  color: #aaa;
  font-size: 16px;
  margin: 20px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #0000FF;
}

.footer-skyline img {
  width: 100%;
  max-height: 80px;
  object-fit: cover;
  opacity: 1;
  margin-top: 80px;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 14px;
  color: #aaa;
  opacity: 1;
  background-color: #222222;
  margin-top: -8px;
}

/* Responsive */
/*Price List*/
/* Responsive Styles */
@media (max-width: 768px) {
    .booking-container {
            width: 80%;
            right: 10%;
            bottom: -80px;
        }
    .price{
        font-size: 18px;
    }
    .price-section{
        display: flow;
    }

    #book-btn{
        margin: 10px 0 2px 0;
    }
        .period{
        font-size: 16px;
    }
        .banner-content p {
        margin-bottom: 8rem;
    }
}
    @media (max-width: 480px) {
    .booking-container {
        width: 90%;
        right: 5%;
        padding: 15px;
        bottom: -70px;
    }
    #book-btn{
     margin: 10px 0 2px 0;
    }
    .period{
        font-size: 16px;
    }
    .banner-content p {
        margin-bottom: 8rem;
    }
    
    .price {
        font-size: 16px;
    }
    
    .book-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

}

@media (max-width: 992px) {
    .contact-columns {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .price-header {
        padding: 25px;
    }
    
    .price-header h2 {
        font-size: 1.8rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .price-details {
        padding: 30px;
    }
    
    .features-list li {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .review-content {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .property-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .close-btn {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}