/* Architecture Studio CSS - Deep Navy & Champagne Gold Theme */

:root {
  --primary-color: #1E3A5F;
  --secondary-color: #C9A961;
  --dark-navy: #0F1F35;
  --light-gold: #E6D4A3;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #6C757D;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5 {
  font-weight: 700;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
}

.lead {
  font-size: 1.1rem;
  color: var(--medium-gray) !important;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all var(--transition-speed) ease;
  z-index: 1050;
}

.navbar.scrolled {
  background: var(--primary-color) !important;
  padding: 0.5rem 0;
}

.navbar-brand {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
}

.navbar-brand:hover {
  color: var(--light-gold) !important;
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  transition: all var(--transition-speed) ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-toggler {
  border-color: var(--secondary-color) !important;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A961' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="0" y="0" width="1" height="1" fill="%23C9A961" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

.hero-content {
  color: var(--white) !important;
  z-index: 2;
  position: relative;
}

.hero-content .display-3 {
  color: var(--white) !important;
  font-size: 3.5rem;
  animation: fadeInUp 1s ease;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  animation: fadeInUp 1.2s ease;
}

.hero-image-panel {
  position: relative;
  height: 600px;
  background: linear-gradient(45deg, var(--secondary-color), var(--light-gold));
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInRight 1.5s ease;
}

/* Search Module */
.search-module {
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1.4s ease;
}

.search-module .form-control,
.search-module .form-select {
  border: 2px solid #E0E0E0 !important;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all var(--transition-speed) ease;
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
}

.search-module .form-control:focus,
.search-module .form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25) !important;
  outline: none;
}

.search-module .form-control::placeholder {
  color: var(--medium-gray) !important;
}

/* Filter Chips */
.filter-chips .btn-outline-secondary {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background-color: transparent !important;
  border-radius: 25px;
  padding: 0.4rem 1.2rem;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.filter-chips .btn-outline-secondary:hover,
.filter-chips .btn-outline-secondary.active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 95, 0.3);
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-gold) 100%) !important;
  color: var(--primary-color) !important;
  border: none !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--secondary-color) 100%) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4) !important;
}

.btn-outline-primary {
  border: 2px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background-color: transparent !important;
}

.btn-outline-primary:hover {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border-color: var(--secondary-color) !important;
}

.btn-light {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--white) !important;
}

.btn-light:hover {
  background-color: transparent !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
}

.btn-outline-light {
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
  background-color: transparent !important;
}

.btn-outline-light:hover {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  border-color: var(--white) !important;
}

.text-white {
  color: var(--white) !important;
}

.btn.text-white {
  color: var(--white) !important;
}

.btn.text-white:hover {
  color: var(--primary-color) !important;
}

/* Featured Properties Section */
.featured-properties {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.featured-properties .display-5 {
  position: relative;
  padding-bottom: 1rem;
}

.featured-properties .display-5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--light-gold));
  border-radius: 2px;
}

/* Property Card */
.property-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.property-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-navy));
}

.property-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.quick-view-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 58, 95, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.property-card:hover .quick-view-overlay {
  opacity: 1;
}

.quick-view-overlay .btn {
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
  background-color: transparent !important;
}

.quick-view-overlay .btn:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

.badge {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.bg-danger {
  background-color: #DC3545 !important;
  color: var(--white) !important;
}

.text-muted {
  color: var(--medium-gray) !important;
}

.bi {
  color: var(--secondary-color);
}

.card-body .bi {
  color: var(--secondary-color) !important;
}

/* Wishlist Button */
.wishlist-btn {
  background-color: var(--white) !important;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.wishlist-btn:hover {
  background-color: var(--secondary-color) !important;
  transform: scale(1.1);
}

.wishlist-btn .bi-heart {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.wishlist-btn:hover .bi-heart {
  color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.testimonial-card .bi-quote {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  opacity: 0.3;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color) !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--light-gold) !important;
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-gold) 100%);
  padding: 5rem 2rem;
  border-radius: 15px;
  margin: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-banner .display-4,
.cta-banner h1,
.cta-banner h2 {
  color: var(--primary-color) !important;
}

.cta-banner .lead {
  color: var(--primary-color) !important;
  opacity: 0.9;
}

/* Services Highlight */
.services-highlight {
  padding: 5rem 0;
  background-color: var(--white);
}

.services-highlight .col-md-4 {
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.services-highlight .col-md-4:hover {
  transform: translateY(-10px);
}

.services-highlight .bi {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
}

.services-highlight h3 {
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 3rem 0 1rem;
}

footer h5,
footer h6 {
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
}

footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

footer a:hover {
  color: var(--secondary-color) !important;
  padding-left: 5px;
}

footer .bi {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
  transition: all var(--transition-speed) ease;
}

footer .bi:hover {
  color: var(--light-gold) !important;
  transform: scale(1.2);
}

/* About Page */
.about-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  min-height: 60vh;
  padding-top: 120px;
  padding-bottom: 3rem;
}

.about-hero-section h1,
.about-hero-section .display-3 {
  color: var(--white) !important;
}

.about-hero-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Stats Section */
.stats-section {
  background-color: var(--light-gray);
  padding: 4rem 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stat-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color) !important;
}

.stat-box .bi {
  font-size: 2.5rem;
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.timeline-container {
  position: relative;
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-content {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  transition: all var(--transition-speed) ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--light-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.timeline-marker .bi {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

/* Team Section */
.team-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.team-member {
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.hexagon-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.hexagon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--light-gold));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.team-member:hover .hexagon {
  transform: rotate(10deg) scale(1.05);
}

.team-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.team-bio.show {
  max-height: 500px;
}

.toggle-bio {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border: none !important;
  margin-top: 1rem;
}

.toggle-bio:hover {
  background-color: var(--light-gold) !important;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.accordion-item {
  border: none !important;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background-color: var(--light-gray) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 1.5rem;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) .bi {
  color: var(--secondary-color) !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231E3A5F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A961'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  background-color: var(--white);
  padding: 1.5rem;
  color: var(--medium-gray);
}

.accordion .bi {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  padding: 5rem 0;
  color: var(--white) !important;
}

.cta-section h2,
.cta-section .display-4 {
  color: var(--white) !important;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Properties Page */
.filter-section {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.filter-section h5,
.filter-section h6 {
  color: var(--primary-color) !important;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.filter-section .btn-link {
  color: var(--secondary-color) !important;
  text-decoration: none;
  font-weight: 600;
}

.filter-section .btn-link:hover {
  color: var(--primary-color) !important;
}

.form-range {
  accent-color: var(--secondary-color);
}

.form-range::-webkit-slider-thumb {
  background-color: var(--secondary-color) !important;
}

.form-range::-moz-range-thumb {
  background-color: var(--secondary-color) !important;
}

.form-check-input:checked {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.form-check-input:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25) !important;
}

.btn-group .btn-check:checked + .btn {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
}

/* Masonry Grid */
.masonry-grid {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  .masonry-grid {
    column-count: 3;
  }
}

.masonry-grid .card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}

/* Card */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

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

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--medium-gray) !important;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  background-color: var(--light-gray);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}

.breadcrumb-item {
  color: var(--medium-gray) !important;
}

.breadcrumb-item.active {
  color: var(--primary-color) !important;
}

.breadcrumb-item a {
  color: var(--secondary-color) !important;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-color) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--medium-gray) !important;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-navy) 100%);
  padding: 150px 0 100px;
  color: var(--white) !important;
}

.contact-hero h1 {
  color: var(--white) !important;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.contact-split-layout {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.map-container {
  height: 400px;
  background-color: var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.office-hours-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.form-floating > .form-control {
  border: 2px solid #E0E0E0 !important;
  border-radius: 8px;
  color: var(--primary-color) !important;
}

.form-floating > .form-control:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25) !important;
}

.form-floating > label {
  color: var(--medium-gray) !important;
}

.social-connect {
  padding: 2rem 0;
}

.social-icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  margin: 0 0.5rem;
  transition: all var(--transition-speed) ease;
  border: none;
}

.social-icon-btn:hover {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-5px) rotate(10deg);
}

.alternate-contact-section {
  background-color: var(--light-gray);
  padding: 4rem 0;
}

.contact-method-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

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

.contact-method-card .bi {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
}

/* Live Chat Widget */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--light-gold)) !important;
  color: var(--primary-color) !important;
  border: none;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  animation: pulse 2s infinite;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
}

.chat-button .bi {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

/* Alert */
.alert {
  border-radius: 8px;
  border: none;
  padding: 1rem 1.5rem;
}

.alert .bi {
  margin-right: 0.5rem;
}

/* Border Utilities */
.border-white {
  border-color: var(--white) !important;
}

.border-end {
  border-right: 1px solid #E0E0E0 !important;
}

.border-start {
  border-left: 4px solid var(--secondary-color) !important;
}

.border-bottom {
  border-bottom: 1px solid #E0E0E0 !important;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--light-gold);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(30, 58, 95, 0.98);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 100px 0 50px;
  }
  
  .hero-content .display-3 {
    font-size: 2.5rem;
  }
  
  .hero-image-panel {
    height: 400px;
    margin-top: 2rem;
  }
  
  .filter-section {
    position: static;
    margin-bottom: 2rem;
  }
  
  .timeline-content {
    margin-bottom: 2rem;
  }
  
  .timeline-marker {
    margin: 1rem auto;
  }
}

@media (max-width: 767.98px) {
  .hero-content .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .property-image-wrapper {
    height: 250px;
  }
  
  .hexagon-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-content .display-3 {
    font-size: 1.75rem;
  }
  
  .search-module {
    padding: 1.5rem !important;
  }
  
  .cta-banner {
    padding: 3rem 1rem;
  }
  
  .live-chat-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .chat-button {
    width: 50px;
    height: 50px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .search-module,
  .live-chat-widget,
  .btn,
  footer {
    display: none !important;
  }
  
  body {
    color: #000 !important;
    background: #fff !important;
  }
}