/* ===== Google Fonts ===== */
/* Inter & Playfair Display fonts are loaded in the HTML */

/* ===== Base Styles ===== */
:root {
    --primary: #1a365d; /* Estate Blue */
    --primary-light: #3182ce; /* Estate Light Blue */
    --secondary: #172554; /* Estate Navy */
    --accent: #ff6b6b; /* Estate Coral */
    --accent-hover: #ff5252;
    --accent-light: #fff0f0;
    --warning: #ff9f43; /* Estate Orange */
    --light: #f9f7f7; /* Estate Cream */
    --dark: #334155; /* Estate Slate */
    --darker: #1e293b; /* Estate Charcoal */
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --gray-dark: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --transition: all 0.3s ease;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--gray-light);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
  }
  
  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--accent);
  }
  
  .btn {
    border-radius: var(--radius);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
  }
  
  .btn-coral {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
  }
  
  .btn-coral:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
  }
  
  .btn-outline-coral {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
  }
  
  .btn-outline-coral:hover {
    background-color: var(--accent);
    color: var(--accent-light);
  }
  
  .card {
    border-radius: var(--radius-lg);
    border: none;
    overflow: hidden;
  }
  
  .section-title {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .subsection-title {
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  /* ===== Navbar ===== */
  .navbar {
    padding: 1rem 0;
    background-color: transparent;
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    background-color: var(--primary);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
  }
  
  .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
  }
  
  .nav-link {
    color: white !important;
    margin: 0 0.5rem;
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  /* ===== Property Banner ===== */
  .property-banner {
      height: 90vh;}
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(23, 37, 84, 0.3), rgba(23, 37, 84, 0.8));
  }
  
  .banner-content {
    position: relative;
    color: white;
    max-width: 800px;
    animation: fadeUp 1s ease-out;
    padding-top: 20rem
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  
  .back-link:hover {
    color: white;
  }
  
  .back-link i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
  }
  
  .property-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .property-location {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .property-location i {
    margin-right: 0.5rem;
  }
  
  .feature-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
  }
  
  .feature-badge i {
    margin-right: 0.5rem;
  }
  
  .property-price {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  
  .property-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-left: 0.75rem;
  }
  
  
  /* ===== Feature Items ===== */
  .feature-item {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
  }
  
  .feature-item i {
    color: var(--accent);
    margin-right: 0.75rem;
    font-size: 0.875rem;
  }
  
  /* ===== Property Details ===== */
  .description-text {
    color: var(--dark);
    line-height: 1.7;
  }
  
  .layout-download {
    background-color: #e6f7ff;
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .layout-download {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
  
  .layout-info {
    flex: 1;
  }
  
  .download-btn {
    background-color: var(--secondary);
    border-color: var(--secondary);
  }
  
  .download-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  /* ===== Tabs ===== */
  .nav-tabs {
    border-bottom: none;
  }
  
  .nav-tabs .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    border: none;
    padding: 1rem 1.5rem !important;
  }
  
  .nav-tabs .nav-link.active {
    background-color: transparent;
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
  }
  
  .nav-tabs .nav-link:hover::after {
    width: 0;
  }
  
  .nav-tabs .nav-link.active::after {
    width: 0;
  }
  
  /* ===== Price Card ===== */
  .price-card {
    background-color: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
  }
  
  .price-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
  }
  
  .price-range {
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  /* ===== Details Card ===== */
  .property-details .detail-item {
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray);
  }
  
  .property-details .detail-item:last-child {
    border-bottom: none;
  }
  
  .detail-label {
    color: var(--dark);
  }
  
  .detail-value {
    font-weight: 500;
    color: var(--secondary);
  }
  
  /* ===== Social Icons ===== */
  .social-icons {
    display: flex;
    gap: 0.75rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-icon.facebook {
    background-color: #e6f2ff;
    color: #3b5998;
  }
  
  .social-icon.twitter {
    background-color: #e6f7ff;
    color: #1da1f2;
  }
  
  .social-icon.whatsapp {
    background-color: #e6ffe6;
    color: #25d366;
  }
  
  .social-icon.instagram {
    background-color: #ffe6f2;
    color: #e1306c;
  }
  
  .social-icon.youtube {
    background-color: #ffe6e6;
    color: #ff0000;
  }
  
  .social-icon:hover {
    transform: scale(1.1);
  }
  
  /* ===== Contact Form ===== */
  .form-control {
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-color: rgba(177, 177, 177, 0.3);
    border-radius: var(--radius);
  }
  
  .form-control:focus {
    background-color: white;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(49, 130, 206, 0.25);
  }
  
  /* ===== Similar Properties ===== */
  .similar-properties {
    padding: 5rem 0;
    background-color: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-subtitle {
    color: var(--dark);
  }
  
  .property-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
  }
  
  .property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
  }
  
  .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .property-card:hover .property-image img {
    transform: scale(1.1);
  }
  
  .property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
  }
  
  .property-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: white;
  }
  
  .property-card-location {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
  }
  
  .property-card-location i {
    margin-right: 0.25rem;
  }
  
  .property-card-content {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .property-card-price {
    display: flex;
    flex-direction: column;
  }
  
  .price-label {
    font-size: 0.75rem;
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .price-value {
    font-weight: 600;
    color: var(--secondary);
  }
  
  .property-card-link {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  
  .property-card-link i {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
  }
  
  .property-card-link:hover i {
    transform: translateX(3px);
  }
  
  /* ===== Footer ===== */
  .footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
  }
  
  .footer-title {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .footer-text {
    opacity: 0.8;
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .footer-social .social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
  }
  
  .footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
  }
  
  .footer-links {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--accent);
    padding-left: 0.25rem;
  }
  
  .contact-info {
    margin-top: 0.5rem;
  }
  
  .contact-item {
    display: flex;
    margin-bottom: 1rem;
  }
  
  .contact-item i {
    margin-right: 1rem;
    margin-top: 0.25rem;
    color: var(--accent);
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright {
    margin-bottom: 0;
  }
  
  .footer-bottom .footer-links {
    margin-bottom: 0;
  }
  
  .footer-bottom .footer-links a {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* ===== Animations ===== */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Apply animations */
  .fade-in {
    animation: fadeIn 0.8s ease-out;
  }
  
  .fade-up {
    animation: fadeUp 0.8s ease-out;
  }
  
  /* ===== Responsive Adjustments ===== */
  @media (max-width: 991.98px) {
    .property-banner {
      height: 80vh !important;
    }
    
    .property-title {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .property-banner {
      height: 70vh !important;
    }
    
    .property-title {
      font-size: 2rem;
    }
    
    .feature-badge {
      padding: 0.4rem 0.8rem;
      font-size: 0.8rem;
    }
    
    .property-price .price {
      font-size: 1.5rem;
    }
    
    .main-image {
      height: 300px;
    }
    
    .property-thumbnail {
      height: 60px;
    }
    
    .section-title {
      font-size: 1.25rem;
    }
    
    .footer {
      padding-top: 3rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .property-banner {
      height: 64vh !important;
    }
    
    .property-title {
      font-size: 1.75rem;
    }
    
    .banner-content {
      padding-bottom: 1rem;
    }
    
    .property-features {
      display: flex;
      flex-wrap: wrap;
    }
    
    .feature-badge {
      margin-bottom: 0.5rem;
      font-size: 0.75rem;
      padding: 0.35rem 0.7rem;
    }
    
    .main-image {
      height: 250px;
    }
    
    .thumbnail-row {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .property-thumbnail {
      height: 70px;
    }
  }

  .property-images-1 {
    max-width: 800px;
    margin: auto;
}
/* ===== Property Section ===== */
.property-section {
    padding: 5rem 0;
  }
  
  /* ===== Property Images ===== */
  .property-images {
    margin-bottom: 2rem;
  }
  
  .main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .main-image:hover img {
    transform: scale(1.05);
  }
  
  .thumbnail-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .property-thumbnail {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    height: 80px;
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .property-thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--primary);
  }
  
  .property-thumbnail:hover {
    opacity: 1;
  }
  
  .property-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail-slider {
    margin-top: 10px;
}
.swiper-slide img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}
.swiper-slide img:hover {
    transform: scale(1.1);
}
.custom-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: auto;
    max-width: 800px;
    transition: transform 0.3s ease-in-out;
}
.property-images.card {
    display: block !important; /* Prevents Bootstrap flexbox from affecting Swiper */
}
.swiper{
    visibility: visible !important;
    opacity: 1!important;
}

/* Document List */
.document-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.document-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--gray-light);
    border-radius: var(--radius);
    margin-bottom: 10px;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.document-link:hover {
    background-color: var(--gray);
    color: var(--primary);
}

.document-link span {
    flex-grow: 1;
    margin-left: 5px;
}
.sidebar-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 20px;
    
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

/* Call to Action */

.cta-section {
  position: relative;
  background: linear-gradient(135deg, #0F172A, #1E40AF, #3B82F6);
  color: white;
  padding: 80px 0;
  overflow: hidden;
  transition: background 0.5s ease-in-out;
}

 .cta-section:hover {
  background: linear-gradient(135deg, #1E293B, #2563EB, #60A5FA); 
} 

/* .cta-section::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 100px;
  background-size: cover;
} */

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-section .btn {
    /* background-color: white; */
    color: var(--white);
    border: none;
    font-weight: 600;
}

.cta-section .btn:hover {
    /* background-color: #f8f9fa; */
    transform: translateY(-3px);
}
  @media (max-width: 360.98px) {
    .property-banner {
      height: 65vh !important;
    }
  }


