/* ============================================
   White Mass Developments - Custom Branding
   ============================================ */

/* ============================================
   CSS Variables (Brand Colors)
   ============================================ */
:root {
  --primary-color: #10334f;      /* Dark Blue */
  --primary-light: #1a4a6e;      /* Light Blue */
  --primary-dark: #0a2238;       /* Darker Blue */
  --secondary-color: #f8f9fa;    /* Light Gray Background */
  --accent-color: #c9a227;       /* Gold Accent */
  --text-dark: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --success: #28a745;
  --danger: #dc3545;

  /* Petrol Colors */
  --petrol-dark: #0d4f5c;
  --petrol-medium: #1a7a8a;
  --petrol-light: #e8f4f6;
  --petrol-bg: #f5fafb;
}

/* ============================================
   Gradient Background - Top to Bottom
   ============================================ */
.gradient-bg {
  background: linear-gradient(180deg, #e8f4f6 0%, #ffffff 100%);
  min-height: 100vh;
}

/* Section Gradient (lighter version) */
.section-gradient {
  background: linear-gradient(180deg, rgba(232, 244, 246, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

/* ============================================
   Override Original Orange (#f69314) with Blue
   ============================================ */

/* All Buttons */
.btn {
  border-radius: 10px;
  padding: 10px 25px;
}

/* Primary Buttons */
.btn.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
}

/* Light & Outline Buttons */
.btn.btn-light {
  border-radius: 10px;
}

/* ============================================
   Brochure Download Section
   ============================================ */
.brochure-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed var(--primary-color);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.brochure-card:hover {
  border-style: solid;
  box-shadow: 0 10px 30px rgba(16, 51, 79, 0.15);
  transform: translateY(-3px);
}

.brochure-card .brochure-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.brochure-card .brochure-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.brochure-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.brochure-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.brochure-card .btn-download {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.brochure-card .btn-download:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(16, 51, 79, 0.3);
  color: white;
}

.brochure-card .btn-download svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn.btn-outline-light,
.btn.btn-outline-primary {
  border-radius: 10px;
}

/* Text Primary */
.text-primary {
  color: var(--primary-color) !important;
}

/* Background Primary */
.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Custom Icons */
.custom-icon {
  color: var(--primary-color);
  font-size: 4rem;
  display: block;
  margin-bottom: 15px;
}

.custom-icon.flaticon-house,
.custom-icon.flaticon-coin,
.custom-icon.flaticon-home,
.custom-icon.flaticon-flat,
.custom-icon.flaticon-location,
.custom-icon.flaticon-mobile-phone {
  color: var(--primary-color);
}

/* Form Controls */
.form-control {
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  height: auto;
}

select.form-control {
  padding-right: 30px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
}

[dir="ltr"] select.form-control {
  background-position: right 12px center;
  padding-right: 15px;
  padding-left: 30px;
}

textarea.form-control {
  border-radius: 10px;
}

/* Form Focus */
.form-control:focus,
.form-control:active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(16, 51, 79, 0.25);
}

/* Links */
a {
  color: var(--primary-color);
}

a:hover {
  color: var(--primary-light);
}

/* Price Tag */
.price {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Section Title */
.section-title {
  color: var(--text-dark);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 15px;
}

.text-center .section-title:after,
.section-title.text-center:after {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Logo Styles
   ============================================ */
.site-logo a {
  font-family: 'Cairo', 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.site-logo a:hover {
  color: var(--primary-light) !important;
}

/* Logo Image */
.site-logo img,
.header-logo {
  max-height: 85px;
  width: auto;
}

/* Footer Logo */
.footer-logo-img {
  max-height: 120px;
  width: auto;
}

/* ============================================
   Navigation Enhancements
   ============================================ */
.site-navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation Menu Flex Layout - Same Row */
.site-navbar .site-navigation .site-menu.main-menu {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 5px;
  white-space: nowrap;
}

.site-navbar .site-navigation .site-menu.main-menu > li {
  display: inline-flex !important;
  align-items: center;
}

.site-menu a.nav-link,
.site-navbar .site-navigation .site-menu > li > a:not(.nav-book-btn) {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.site-menu a.nav-link:hover,
.site-menu a.nav-link.active,
.site-navbar .site-navigation .site-menu > li > a:not(.nav-book-btn):hover {
  color: var(--primary-color) !important;
}

/* Navbar Book Button - CTA */
.nav-book-btn,
.site-menu .nav-book-btn,
a.nav-book-btn,
.nav-book-item a.nav-book-btn,
.site-menu li a.nav-book-btn,
.site-navbar .nav-book-btn,
.site-navbar .site-navigation .site-menu > li > a.nav-book-btn,
.site-navbar .site-navigation .site-menu .nav-book-item > a,
.site-navbar .site-menu > li.nav-book-item > a.nav-book-btn,
.site-menu > li > a.nav-book-btn {
  background: linear-gradient(135deg, #10334f 0%, #1a4a6e 100%) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 15px rgba(16, 51, 79, 0.4);
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block;
  white-space: nowrap;
}

.nav-book-btn:hover,
.site-menu .nav-book-btn:hover,
a.nav-book-btn:hover,
.site-navbar .nav-book-btn:hover,
.site-navbar .site-navigation .site-menu > li > a.nav-book-btn:hover,
.site-navbar .site-navigation .site-menu .nav-book-item > a:hover,
.site-menu > li > a.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 51, 79, 0.6);
  color: #fff !important;
  background: linear-gradient(135deg, #1a4a6e 0%, #10334f 100%) !important;
}

.nav-book-item {
  margin-left: 15px !important;
  order: 12 !important;
}

[dir="rtl"] .nav-book-item {
  margin-left: 15px !important;
  margin-right: 0 !important;
}

/* Mobile Book Button in Header */
.nav-book-btn-mobile,
a.nav-book-btn-mobile,
.site-navbar .nav-book-btn-mobile,
.mobile-header-right .nav-book-btn-mobile {
  background: #10334f !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  box-shadow: 0 3px 12px rgba(16, 51, 79, 0.4);
  text-decoration: none !important;
  display: inline-block !important;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-book-btn-mobile:hover,
a.nav-book-btn-mobile:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 18px rgba(16, 51, 79, 0.5);
  color: #fff !important;
}

/* Mobile header layout - Menu Icon | Logo | Button */
@media (max-width: 1199px) {
  .site-navbar .row.align-items-center {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo column with menu toggle */
  .mobile-header-left {
    display: flex !important;
    align-items: center;
    gap: 15px;
    flex: 1;
    order: 1;
  }

  /* Force menu toggle to be visible */
  .mobile-header-left > a.site-menu-toggle {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 24px;
    color: #000;
  }

  .mobile-header-left .site-menu-toggle .icon-menu,
  .mobile-header-left .site-menu-toggle .h3 {
    display: inline-block !important;
    font-size: 24px !important;
    margin: 0 !important;
  }

  .mobile-header-left .site-logo {
    display: inline-block !important;
  }

  /* Button column */
  .mobile-header-right {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 auto;
    order: 2;
  }
}

/* Mobile Book Button in Menu - Moved to Mobile Menu section below */

/* Language Switcher */
.site-menu .language-switcher,
.language-switcher {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  order: 11 !important;
}

.site-menu .language-switcher a,
.language-switcher a {
  color: var(--text-dark) !important;
  font-size: 14px !important;
  font-weight: 500;
  padding: 5px 10px !important;
  transition: all 0.3s ease;
}

.site-menu .language-switcher a:hover,
.language-switcher a:hover {
  color: var(--primary-color) !important;
}

.site-menu .language-switcher a.active,
.language-switcher a.active,
li.language-switcher a.active {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
}

.language-switcher span {
  color: #ccc;
  font-size: 14px;
}

/* ============================================
   Hero Section
   ============================================ */
.site-blocks-cover {
  position: relative;
}

.site-blocks-cover.overlay:after {
  background: linear-gradient(135deg, rgba(16, 51, 79, 0.6) 0%, rgba(10, 34, 56, 0.65) 100%);
}

.site-blocks-cover h1 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ============================================
   Statistics Section
   ============================================ */
.stats-section {
  background: var(--primary-color);
  padding: 60px 0;
}

.stats-item {
  text-align: center;
  color: var(--white);
}

.stats-item .number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stats-item .label {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 10px;
}

/* ============================================
   Property Cards Enhancement - Professional Hover
   ============================================ */
.property {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.property:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(16, 51, 79, 0.2);
}

.property img {
  transition: transform 0.6s ease;
}

/* Uniform card images for homepage carousel */
.nonloop-block-13 .property > a {
  display: block;
  position: relative;
  overflow: hidden;
}

.nonloop-block-13 .property > a img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Image Zoom on Hover */
.property:hover img {
  transform: scale(1.1);
}

/* Gradient Overlay on Hover */
.nonloop-block-13 .property > a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(16, 51, 79, 0.85) 0%,
    rgba(16, 51, 79, 0.4) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.nonloop-block-13 .property:hover > a::after {
  opacity: 1;
}

/* View Details Button on Hover */
.property .view-details {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: white;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 5;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.property .view-details:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(-50%) translateY(0) scale(1.05);
}

.property:hover .view-details {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.property .view-details span {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.property .view-details:hover span {
  transform: translateX(-3px);
}

[dir="ltr"] .property .view-details:hover span {
  transform: translateX(3px);
}

.property .prop-details {
  padding: 20px;
  position: relative;
  background: white;
}

.property .prop-details h3 {
  transition: color 0.3s ease;
}

.property:hover .prop-details h3 {
  color: var(--primary-color);
}

.property .price {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Property Status Badge */
.property-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

[dir="rtl"] .property-status {
  right: auto;
  left: 15px;
}

.property:hover .property-status {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.property-status.available {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: var(--white);
}

.property-status.sold {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: var(--white);
}

.property-status.soon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d4a01e 100%);
  color: var(--white);
}

/* ============================================
   Features/Services Section
   ============================================ */
.feature-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-box .icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 51, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 2rem;
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-box p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================
   Testimonials Enhancement
   ============================================ */
.testimonial-wrap {
  background: var(--secondary-color);
}

.testimonial blockquote {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.testimonial figure img,
.testimonial-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-img {
  margin-left: 15px;
}

[dir="rtl"] .testimonial-img {
  margin-left: 0;
  margin-right: 15px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-info-box {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info-box .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* Contact Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: scale(1.1);
}

/* ============================================
   Footer Enhancement
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  padding-top: 80px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
  letter-spacing: 1px;
}

.footer-logo a:hover {
  color: var(--primary-light) !important;
}

/* Footer About Text */
.site-footer .footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.site-footer h2.footer-heading {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.site-footer h2.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

[dir="rtl"] .site-footer h2.footer-heading:after {
  right: 0;
  left: auto;
}

[dir="ltr"] .site-footer h2.footer-heading:after {
  left: 0;
  right: auto;
}

/* Footer Links */
.site-footer .list-unstyled li {
  margin-bottom: 12px;
}

.site-footer .list-unstyled li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.site-footer .list-unstyled li a::before {
  content: '\f054';
  font-family: 'icomoon';
  font-size: 10px;
  margin-left: 8px;
  opacity: 0;
  transition: all 0.3s ease;
}

[dir="ltr"] .site-footer .list-unstyled li a::before {
  content: '\f053';
  margin-left: 0;
  margin-right: 8px;
}

.site-footer .list-unstyled li a:hover {
  color: var(--white);
  padding-right: 10px;
}

[dir="ltr"] .site-footer .list-unstyled li a:hover {
  padding-right: 0;
  padding-left: 10px;
}

.site-footer .list-unstyled li a:hover::before {
  opacity: 1;
}

.site-footer a:hover {
  color: var(--primary-light);
}

/* Footer Contact Info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(16, 51, 79, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  margin-left: 15px;
}

[dir="ltr"] .footer-contact-item .icon {
  margin-left: 0;
  margin-right: 15px;
}

.footer-contact-item span {
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--white);
}

/* Newsletter Form */
.footer-subscribe .input-group {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-subscribe .form-control {
  background: transparent !important;
  border: none !important;
  color: var(--white) !important;
  padding: 12px 15px;
  border-radius: 0;
}

.footer-subscribe .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe .btn {
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 600;
}

/* Social Icons in Footer */
.site-footer .social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer .social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.site-footer .social-icons a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer Bottom / Copyright */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  margin-top: 60px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer-bottom strong {
  color: var(--white);
}

.footer-bottom .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128c7e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i,
.whatsapp-float span {
  font-size: 28px;
}

/* ============================================
   Mortgage Calculator
   ============================================ */
.calculator-box {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.calculator-box h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.calculator-result {
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.calculator-result .result-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.calculator-result .result-item:last-child {
  border-bottom: none;
}

.calculator-result .result-item .label {
  color: var(--text-light);
}

.calculator-result .result-item .value {
  font-weight: 700;
  color: var(--primary-color);
}

/* ============================================
   Unit Comparison Table
   ============================================ */
.comparison-table {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table th {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px;
  font-weight: 600;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .highlight {
  background: rgba(16, 51, 79, 0.05);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 991px) {
  .stats-item .number {
    font-size: 2.5rem;
  }

  .site-blocks-cover h1 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .stats-item {
    margin-bottom: 30px;
  }

  .feature-box {
    margin-bottom: 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  [dir="rtl"] .whatsapp-float {
    right: auto;
    left: 20px;
  }
}

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
/* Modern Page Header */
.page-header {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 51, 79, 0.95) 0%, rgba(10, 34, 56, 0.98) 100%);
  padding: 150px 0 80px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Page Header with Background Image */
.page-header.has-bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Project Page Header - Larger with Content */
.page-header.project-header {
  min-height: 400px;
  margin-top: 90px;
  padding: 60px 0;
  text-align: right;
}

[dir="ltr"] .page-header.project-header {
  text-align: left;
}

.page-header.project-header .container {
  align-items: flex-start;
  max-width: 1140px;
}

.page-header.project-header .project-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-header.project-header .project-subtitle i {
  font-size: 1.1rem;
}

.page-header.project-header .project-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.page-header.project-header .project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.page-header.project-header .feature-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 25px;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-header.project-header .feature-badge i {
  color: rgba(255,255,255,0.8);
}

.page-header.project-header .btn-brochure {
  position: absolute;
  top: 20px;
  left: 15px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

[dir="ltr"] .page-header.project-header .btn-brochure {
  left: auto;
  right: 15px;
}

.page-header.project-header .btn-brochure:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .page-header.project-header {
    min-height: 350px;
    margin-top: 70px;
    padding: 40px 0;
    text-align: center;
  }
  .page-header.project-header .container {
    align-items: center;
  }
  .page-header.project-header .project-description {
    font-size: 1rem;
  }
  .page-header.project-header .project-features {
    justify-content: center;
  }
  .page-header.project-header .btn-brochure {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 15px;
  }
}

/* Extended Project Header with Specs Card */
.page-header.project-header-extended {
  min-height: 550px;
  padding: 140px 0 60px;
}

.page-header.project-header-extended .btn-brochure {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 20px;
}

.specs-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-top: 50px;
}

.specs-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.specs-card-header h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0;
}

.specs-card-header .btn {
  white-space: nowrap;
}

.specs-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.specs-card .table {
  margin-bottom: 0;
}

.specs-card .table th {
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  padding: 8px 5px;
  width: 45%;
}

.specs-card .table td {
  color: var(--text-light);
  border: none;
  padding: 8px 5px;
}

.specs-card .table tr:nth-child(odd) {
  background: rgba(16, 51, 79, 0.05);
}

@media (max-width: 991px) {
  .page-header.project-header-extended {
    min-height: auto;
    padding: 120px 0 40px;
  }
  .specs-card {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .page-header.project-header-extended .project-features {
    justify-content: center;
  }
}

/* RTL Support for Specs Card */
[dir="rtl"] .specs-card {
  text-align: right;
}

[dir="rtl"] .specs-card h4 {
  text-align: right;
}

[dir="rtl"] .specs-card .table th {
  text-align: right;
}

[dir="rtl"] .specs-card .table td {
  text-align: left;
}

/* Blue Overlay for Page Header with Image */
.page-header.has-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 51, 79, 0.7) 0%, rgba(10, 34, 56, 0.75) 100%);
  z-index: 0;
}

/* Background Pattern (for headers without image) */
.page-header:not(.has-bg-image)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  z-index: 0;
}

/* Decorative Shape */
.page-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Page Title */
.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.2);
  animation: fadeInUp 0.6s ease;
}

/* Subtitle */
.page-header .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 25px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

/* Modern Breadcrumb with Glassmorphism */
.page-header .breadcrumb {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 12px 25px;
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
  color: #fff;
}

.page-header .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
}

/* Page Header Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Page Header */
@media (max-width: 767px) {
  .page-header {
    padding: 120px 0 60px;
    min-height: 220px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .page-header .lead {
    font-size: 1rem;
  }
  .page-header .breadcrumb {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ============================================
   Animation Classes
   ============================================ */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  animation: slideUp 0.5s ease-out;
}

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

/* ============================================
   Modern Arrow Navigation (Slider)
   ============================================ */
.about-slider-wrapper {
  position: relative;
}

.custom-direction {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.custom-direction a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.custom-direction a::before {
  font-family: 'icomoon';
  font-size: 14px;
  line-height: 1;
}

.custom-direction .custom-prev::before {
  content: '\f053';
}

.custom-direction .custom-next::before {
  content: '\f054';
}

/* RTL - swap arrows */
[dir="rtl"] .custom-direction .custom-prev::before {
  content: '\f054';
}

[dir="rtl"] .custom-direction .custom-next::before {
  content: '\f053';
}

.custom-direction a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(16, 51, 79, 0.4);
}

/* Hide original text navigation */
.custom-nav1 {
  display: none;
}

/* ============================================
   Projects Carousel Navigation Arrows
   ============================================ */
.projects-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.projects-nav a {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 51, 79, 0.3);
  text-decoration: none;
}

.projects-nav a:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(16, 51, 79, 0.4);
}

.projects-nav a:active {
  transform: scale(0.95);
}

@media (max-width: 767px) {
  .projects-nav a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ============================================
   Project Gallery Grid
   ============================================ */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.project-gallery .gallery-item {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  display: block;
}

.project-gallery .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 410px;
}

.project-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.project-gallery .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.project-gallery .gallery-item:hover::after {
  background: rgba(0,0,0,0.2);
}

/* Zoom icon on hover */
.project-gallery .gallery-item .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.project-gallery .gallery-item:hover .zoom-icon {
  opacity: 1;
}

/* Responsive Gallery */
@media (max-width: 991px) {
  .project-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .project-gallery .gallery-item:first-child {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-gallery .gallery-item {
    height: 150px;
  }
  .project-gallery .gallery-item:first-child {
    height: 310px;
  }
}

/* ============================================
   Equal Height Project Cards (Projects Page)
   ============================================ */
.row > [class*="col-"] > .property {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.property > a {
  display: block;
  overflow: hidden;
  position: relative;
}

.row .property > a img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.property .prop-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property .prop-details .btn {
  margin-top: auto;
}

/* Responsive adjustments for card images */
@media (max-width: 991px) {
  .property > a img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .property > a img {
    height: 200px;
  }
}

/* ============================================
   Projects Swiper Carousel
   ============================================ */
.projects-swiper {
  padding: 20px 50px 60px;
  position: relative;
}

.projects-swiper .swiper-slide {
  height: auto;
}

.projects-swiper .property {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.projects-swiper .property:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.projects-swiper .property > a {
  display: block;
  position: relative;
  overflow: hidden;
}

.projects-swiper .property > a img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.projects-swiper .property:hover > a img {
  transform: scale(1.05);
}

.projects-swiper .property .prop-details {
  padding: 20px;
}

.projects-swiper .property .prop-details h3 {
  font-size: 1.1rem;
}

.projects-swiper .property .prop-details h3 a {
  color: #333;
  text-decoration: none;
}

/* Swiper Navigation Arrows */
.projects-swiper .swiper-button-prev,
.projects-swiper .swiper-button-next {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.projects-swiper .swiper-button-prev:after,
.projects-swiper .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}

.projects-swiper .swiper-button-prev:hover,
.projects-swiper .swiper-button-next:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

/* Swiper Pagination Dots */
.projects-swiper .swiper-pagination {
  bottom: 15px;
}

.projects-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.projects-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 767px) {
  .projects-swiper {
    padding: 20px 40px 60px;
  }

  .projects-swiper .swiper-button-prev,
  .projects-swiper .swiper-button-next {
    width: 38px;
    height: 38px;
  }

  .projects-swiper .swiper-button-prev:after,
  .projects-swiper .swiper-button-next:after {
    font-size: 14px;
  }
}

/* ============================================
   Other Projects Sidebar List
   ============================================ */
.other-projects-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.other-project-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: var(--secondary-color);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.other-project-item:hover {
  background: rgba(16, 51, 79, 0.08);
  border-color: var(--primary-color);
  transform: translateX(-5px);
  text-decoration: none;
}

[dir="ltr"] .other-project-item:hover {
  transform: translateX(5px);
}

.other-project-item .project-thumb {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 15px;
}

[dir="ltr"] .other-project-item .project-thumb {
  margin-left: 0;
  margin-right: 15px;
}

.other-project-item .project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.other-project-item:hover .project-thumb img {
  transform: scale(1.1);
}

.other-project-item .project-info {
  flex: 1;
}

.other-project-item .project-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.other-project-item:hover .project-info h5 {
  color: var(--primary-color);
}

.other-project-item .project-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   Modern Contact Info Cards
   ============================================ */
.contact-info-modern {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-modern h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(16, 51, 79, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 51, 79, 0.15);
  border-color: var(--primary-color);
}

.contact-info-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-left: 15px;
  box-shadow: 0 4px 15px rgba(16, 51, 79, 0.3);
}

[dir="ltr"] .contact-info-item .icon-box {
  margin-left: 0;
  margin-right: 15px;
}

.contact-info-item .info-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.contact-info-item .info-content p,
.contact-info-item .info-content a {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-item .info-content a:hover {
  color: var(--primary-color);
}

/* Quick Contact Buttons */
.quick-contact-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.quick-contact-box h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.quick-contact-box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.quick-contact-box .btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: white;
}

.quick-contact-box .btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

.quick-contact-box .btn-call {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  color: white;
}

.quick-contact-box .btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 51, 79, 0.4);
  color: white;
}

/* Modern Social Icons Section */
.social-section-modern {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.social-section-modern h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.social-icons-modern {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons-modern a {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-icons-modern a.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-icons-modern a.facebook:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.social-icons-modern a.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-icons-modern a.instagram:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.social-icons-modern a.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-icons-modern a.linkedin:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
}

/* ============================================
   Mobile Navbar Styles
   ============================================ */
@media (max-width: 1199px) {
  /* Mobile Header Bar */
  .site-navbar {
    background: linear-gradient(135deg, #10334f 0%, #0a2238 100%) !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  }

  .site-navbar .container {
    padding: 0;
  }

  .site-navbar .row {
    margin: 0;
    min-height: 65px;
    align-items: center;
  }

  /* Logo Styling - Menu icon on side, Logo centered */
  .site-navbar .col-6.col-xl-2.mobile-header-left {
    position: static;
    left: auto;
    transform: none;
    width: auto !important;
    flex: 0 0 auto;
    max-width: none;
    display: flex !important;
    align-items: center;
    padding-left: 15px;
  }

  /* Logo centered absolutely */
  .site-navbar .mobile-header-left .site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-navbar .site-logo img.header-logo {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  /* Hamburger Menu Button - Modern Style */
  .site-navbar .site-menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    margin-right: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .site-navbar .site-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .site-navbar .site-menu-toggle .icon-menu,
  .site-navbar .site-menu-toggle .h3,
  .site-navbar .site-menu-toggle span {
    color: white !important;
    font-size: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Fix for RTL */
  [dir="rtl"] .site-navbar .site-menu-toggle {
    margin-right: 0;
    margin-left: 10px;
  }

  [dir="rtl"] .site-navbar .col-6.d-inline-block {
    text-align: right;
  }

  [dir="rtl"] .site-navbar .col-6.col-xl-2.mobile-header-left {
    padding-left: 0;
    padding-right: 15px;
  }

  /* Mobile header right - Book button */
  .site-navbar .mobile-header-right {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 15px;
  }

  /* Adjust page content to not hide behind fixed navbar */
  .site-wrap {
    padding-top: 65px;
  }

  /* Page Header adjustments */
  .page-header {
    margin-top: 0;
  }
}

/* Mobile Menu Overlay */
.offcanvas-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1049;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Menu Slide Panel */
.site-mobile-menu {
  background: linear-gradient(180deg, #10334f 0%, #0a2238 100%);
  width: 300px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-mobile-menu .site-mobile-menu-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 70px;
}

.site-mobile-menu .site-mobile-menu-header > div {
  margin: 0 !important;
  padding: 0 !important;
}

.site-mobile-menu .site-mobile-menu-close {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
}

.site-mobile-menu .site-mobile-menu-close:hover {
  background: rgba(243, 184, 114, 0.25) !important;
  border-color: rgba(243, 184, 114, 0.4) !important;
}

.site-mobile-menu .site-mobile-menu-close span,
.site-mobile-menu .site-mobile-menu-close .icon-close2 {
  color: white !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-mobile-menu .site-mobile-menu-logo a img {
  max-width: 110px;
  filter: brightness(0) invert(1);
}

.site-mobile-menu .site-mobile-menu-body {
  padding: 25px 20px;
  flex: 1;
  overflow-y: auto;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap > li {
  margin-bottom: 8px;
  opacity: 0;
  animation: slideInMenu 0.4s ease forwards;
}

.site-mobile-menu .site-nav-wrap > li:nth-child(1) { animation-delay: 0.1s; }
.site-mobile-menu .site-nav-wrap > li:nth-child(2) { animation-delay: 0.15s; }
.site-mobile-menu .site-nav-wrap > li:nth-child(3) { animation-delay: 0.2s; }
.site-mobile-menu .site-nav-wrap > li:nth-child(4) { animation-delay: 0.25s; }
.site-mobile-menu .site-nav-wrap > li:nth-child(5) { animation-delay: 0.3s; }
.site-mobile-menu .site-nav-wrap > li:nth-child(6) { animation-delay: 0.35s; }
.site-mobile-menu .site-nav-wrap > li:nth-child(7) { animation-delay: 0.4s; }

@keyframes slideInMenu {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[dir="rtl"] .site-mobile-menu .site-nav-wrap > li {
  animation-name: slideInMenuRTL;
}

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

.site-mobile-menu .site-nav-wrap a {
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 22px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 12px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
}

.site-mobile-menu .site-nav-wrap a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-5px);
}

[dir="ltr"] .site-mobile-menu .site-nav-wrap a:hover {
  transform: translateX(5px);
}

.site-mobile-menu .site-nav-wrap li.active > a {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e8a555 100%);
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(243, 184, 114, 0.3);
}

/* RTL Adjustments for Mobile Menu */
[dir="rtl"] .site-mobile-menu {
  right: auto;
  left: 0;
  transform: translateX(-110%);
}

[dir="rtl"] .offcanvas-menu .site-mobile-menu {
  transform: translateX(0%);
}

[dir="rtl"] .site-mobile-menu .site-mobile-menu-header {
  flex-direction: row-reverse;
}

/* Language Switcher in Mobile - Modern Style */
.site-mobile-menu .language-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

.site-mobile-menu .language-switcher a {
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.site-mobile-menu .language-switcher a:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
}

.site-mobile-menu .language-switcher a.active {
  color: white !important;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e8a555 100%);
  border-color: transparent;
  font-weight: 600;
}

.site-mobile-menu .language-switcher span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* Book Button in Mobile Menu */
.site-mobile-menu .nav-book-item {
  margin-top: 25px;
  padding: 0 5px;
}

.site-mobile-menu .nav-book-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 25px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e8a555 100%);
  color: white !important;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(243, 184, 114, 0.4);
  transition: all 0.3s ease;
}

.site-mobile-menu .nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(243, 184, 114, 0.5);
}

/* ============================================
   Commercial Shop CTA Button & Page Styles
   ============================================ */

/* Commercial CTA Button - Professional Orange with Animation */
.commercial-cta {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed rgba(16, 51, 79, 0.2);
}

.btn-commercial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f3b872 0%, #e8a555 100%);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(243, 184, 114, 0.5);
  transition: all 0.3s ease;
  animation: pulse-glow 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.btn-commercial::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 3s ease-in-out infinite;
}

.btn-commercial:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(243, 184, 114, 0.6);
  color: #ffffff;
  text-decoration: none;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(243, 184, 114, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(243, 184, 114, 0.7);
  }
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-commercial-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-commercial-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.btn-commercial-text {
  flex: 1;
  text-align: right;
  padding: 0 15px;
}

.btn-commercial-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.btn-commercial-text small {
  font-size: 0.85rem;
  opacity: 0.9;
  color: #ffffff;
}

.btn-commercial-arrow {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.btn-commercial:hover .btn-commercial-arrow {
  transform: translateX(-5px);
}

/* RTL Support for Commercial Button */
[dir="rtl"] .btn-commercial-text {
  text-align: right;
}

[dir="rtl"] .btn-commercial:hover .btn-commercial-arrow {
  transform: translateX(5px);
}

[dir="ltr"] .btn-commercial-text {
  text-align: left;
}

[dir="ltr"] .btn-commercial:hover .btn-commercial-arrow {
  transform: translateX(5px);
}

/* Commercial Page Styles */
.commercial-hero {
  background: linear-gradient(135deg, rgba(16, 51, 79, 0.9) 0%, rgba(10, 34, 56, 0.95) 100%);
  padding: 80px 0 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.commercial-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pattern.png') repeat;
  opacity: 0.05;
}

.commercial-hero .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f3b872 0%, #e8a555 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.commercial-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.commercial-hero .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Specs Section */
.commercial-specs {
  padding: 60px 0;
  background: #f8f9fa;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.floor-plan-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.floor-plan-card h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floor-plan-placeholder {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  border-radius: 15px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  border: 2px dashed #ddd;
}

.floor-plan-placeholder svg {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  opacity: 0.5;
}

.floor-plan-placeholder img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 15px;
}

.specs-details-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.specs-details-card h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item .spec-label {
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-item .spec-label svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.spec-item .spec-value {
  color: var(--primary-color);
  font-weight: 700;
}

/* Features Section */
.commercial-features {
  padding: 60px 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-card .feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-card h4 {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

.feature-card p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

/* Activities Section */
.commercial-activities {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.activity-badge {
  background: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.activity-badge:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(16, 51, 79, 0.15);
}

.activity-badge .activity-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.activity-badge span {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
}

/* CTA Section */
.commercial-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.commercial-cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.commercial-cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-buttons .btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-buttons .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-buttons .btn-call:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive for Commercial Page */
@media (max-width: 992px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .commercial-hero h1 {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-whatsapp,
  .cta-buttons .btn-call {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .btn-commercial {
    padding: 12px 15px;
  }

  .btn-commercial-icon {
    width: 40px;
    height: 40px;
  }

  .btn-commercial-text strong {
    font-size: 1rem;
  }

  .btn-commercial-text small {
    font-size: 0.75rem;
  }

  .activities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   Shop Models Section - Multiple Units Display
   ============================================ */

/* Floor Plan Section */
.floorplan-section {
  padding: 50px 0 30px;
  background: #fff;
}

.floorplan-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.floorplan-container h3 {
  text-align: center;
  color: var(--primary-color, #10334f);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.floorplan-container h3 span {
  margin-left: 10px;
}

[dir="rtl"] .floorplan-container h3 span {
  margin-left: 0;
  margin-right: 10px;
}

.floorplan-container img {
  width: 100%;
  border-radius: 15px;
  border: 1px solid #eee;
}

.floorplan-placeholder {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border-radius: 15px;
  padding: 80px 40px;
  text-align: center;
  color: #999;
}

.floorplan-placeholder span {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  opacity: 0.5;
}

.floorplan-placeholder p {
  font-size: 1.1rem;
  margin: 0;
}

/* Shop Models Section */
.shop-models-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.shop-models-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.shop-models-section .section-title h2 {
  color: var(--primary-color, #10334f);
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-models-section .section-title p {
  color: #666;
  font-size: 1.1rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.model-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f3b872 0%, #e8a555 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.model-card:hover {
  border-color: var(--primary-color, #10334f);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.model-card:hover::before {
  opacity: 1;
}

.model-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.model-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color, #10334f);
  margin: 0;
}

.model-badge {
  background: linear-gradient(135deg, #f3b872 0%, #e8a555 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.model-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.model-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed #eee;
}

.model-specs li:last-child {
  border-bottom: none;
}

.spec-label {
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.spec-label span[class^="icon-"] {
  color: var(--primary-color, #10334f);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.spec-value {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

/* Model Card Variations */
.model-card.model-a .model-badge {
  background: linear-gradient(135deg, #10334f 0%, #0a2238 100%);
}

.model-card.model-b .model-badge {
  background: linear-gradient(135deg, #f3b872 0%, #e8a555 100%);
}

/* Responsive */
@media (max-width: 992px) {
  .models-grid {
    gap: 20px;
  }

  .model-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .models-grid {
    grid-template-columns: 1fr;
  }

  .floorplan-container {
    padding: 20px;
  }

  .model-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  [dir="rtl"] .model-header {
    align-items: flex-end;
  }
}

@media (max-width: 576px) {
  .shop-models-section {
    padding: 40px 0;
  }

  .floorplan-section {
    padding: 40px 0 20px;
  }

  .model-name {
    font-size: 1.3rem;
  }

  .model-specs li {
    padding: 12px 0;
  }
}

/* ============================================
   Why White Mass - Feature Cards Section
   ============================================ */
.why-us-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.why-us-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.why-us-section .section-title h2 {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.why-us-section .section-title h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  margin: 20px auto 0;
  border-radius: 2px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-us-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-us-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(16, 51, 79, 0.15);
}

.why-us-card:hover::before {
  transform: scaleX(1);
}

.why-us-card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(145deg, #f8f9fa 0%, #e8ecf1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.why-us-card-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed var(--primary-color);
  opacity: 0.3;
  animation: rotate-border 20s linear infinite;
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.why-us-card:hover .why-us-card-icon {
  background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-light) 100%);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(16, 51, 79, 0.3);
}

.why-us-card-icon span {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.why-us-card:hover .why-us-card-icon span {
  color: white;
  transform: scale(1.1);
}

.why-us-card h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.why-us-card:hover h3 {
  color: var(--primary-color);
}

.why-us-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Why Us Cards */
@media (max-width: 991px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .why-us-card {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .why-us-section {
    padding: 60px 0;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-card {
    padding: 25px 20px;
  }

  .why-us-card-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }

  .why-us-card-icon span {
    font-size: 2rem;
  }

  .why-us-section .section-title h2 {
    font-size: 1.8rem;
  }
}

/* ============================================
   Enhanced Commercial Hero Section
   ============================================ */
.commercial-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.commercial-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 51, 79, 0.85) 0%, rgba(10, 34, 56, 0.9) 100%);
}

.commercial-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.commercial-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f3b872 0%, #e8a555 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(243, 184, 114, 0.5);
}

.commercial-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.commercial-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* ============================================
   Improved Activities Section with Better Icons
   ============================================ */
.commercial-activities {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.commercial-activities .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.commercial-activities .section-title h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
}

.commercial-activities .section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #f3b872 0%, #e8a555 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.commercial-activities .section-title p {
  color: #666;
  font-size: 1.1rem;
}

.activities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.activity-item {
  flex: 0 0 140px;
  background: white;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.activity-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(16, 51, 79, 0.15);
}

.activity-item span[class^="icon-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(16, 51, 79, 0.3);
  transition: all 0.3s ease;
}

.activity-item:hover span[class^="icon-"] {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(16, 51, 79, 0.4);
}

.activity-item span:not([class^="icon-"]) {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================================
   Improved Features Section Icons
   ============================================ */
.commercial-features .feature-card .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(16, 51, 79, 0.25);
  transition: all 0.3s ease;
}

.commercial-features .feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(16, 51, 79, 0.35);
}

.commercial-features .feature-card .feature-icon span[class^="icon-"] {
  color: white;
  font-size: 1.8rem;
}

/* Back to Project Section */
.back-to-project {
  padding: 40px 0;
  background: #f8f9fa;
}

.back-to-project .btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.back-to-project .btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

[dir="rtl"] .back-to-project .btn-outline-primary:hover {
  transform: translateX(-5px);
}

/* ============================================
   Responsive Activities
   ============================================ */
@media (max-width: 768px) {
  .activities-grid {
    gap: 15px;
  }

  .activity-item {
    flex: 0 0 110px;
    padding: 20px 10px;
  }

  .activity-item span[class^="icon-"] {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .activity-item span:not([class^="icon-"]) {
    font-size: 0.85rem;
  }

  .commercial-hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .activities-grid {
    gap: 12px;
  }

  .activity-item {
    flex: 0 0 calc(50% - 10px);
    padding: 18px 8px;
  }

  .activity-item span[class^="icon-"] {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .commercial-hero {
    min-height: 300px;
  }

  .commercial-hero-content h1 {
    font-size: 1.6rem;
  }

  .commercial-badge {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

/* ============================================
   Home Page Projects Swiper
   ============================================ */
.home-projects-swiper {
  padding: 20px 50px 60px;
  position: relative;
}

.home-projects-swiper .swiper-slide {
  height: auto;
}

.home-projects-swiper .property {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
  max-width: 100%;
}

.home-projects-swiper .property:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.home-projects-swiper .property > a {
  display: block;
  position: relative;
  overflow: hidden;
}

.home-projects-swiper .property > a img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-projects-swiper .property:hover > a img {
  transform: scale(1.05);
}

.home-projects-swiper .property .prop-details {
  padding: 15px;
}

.home-projects-swiper .property .prop-details h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.home-projects-swiper .property .prop-details h3 a {
  color: #333;
  text-decoration: none;
}

.home-projects-swiper .property .prop-details p {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.home-projects-swiper .property .prop-details .d-flex span {
  font-size: 0.8rem;
}

.home-projects-swiper .property .prop-details .btn {
  padding: 8px 15px;
  font-size: 0.85rem;
}

/* Swiper Navigation Arrows */
.home-projects-swiper .swiper-button-prev,
.home-projects-swiper .swiper-button-next {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.home-projects-swiper .swiper-button-prev:after,
.home-projects-swiper .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}

.home-projects-swiper .swiper-button-prev:hover,
.home-projects-swiper .swiper-button-next:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

/* Swiper Pagination Dots */
.home-projects-swiper .swiper-pagination {
  bottom: 15px;
}

.home-projects-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.home-projects-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
  .home-projects-swiper .property > a img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .home-projects-swiper {
    padding: 20px 40px 60px;
  }

  .home-projects-swiper .swiper-button-prev,
  .home-projects-swiper .swiper-button-next {
    width: 38px;
    height: 38px;
  }

  .home-projects-swiper .swiper-button-prev:after,
  .home-projects-swiper .swiper-button-next:after {
    font-size: 14px;
  }

  .home-projects-swiper .property > a img {
    height: 180px;
  }
}
