@charset "UTF-8";
/*

@Author: Themezinho
@URL: http://www.themezinho.net

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.


// Table of contents //

	01.	GOOGLE FONTS
	02.	BODY
	03.	CUSTOM CLASSES
	04. FORM ELEMENTS
	05.	SECTIONS
	06.	HTML TAGS
	07.	LINKS
	08.	MODAL
	09.	PAGINATION
	10. PRELOADER
	11.	TRANSITION OVERLAY
	12.	SANDWICH BUTTON
	13.	SCROLL DOWN
	14.	NAVIGATION MENU
	15.	HEADER
	16.	SOCIAL MEDIA
	17.	NAVBAR
	18.	SLIDER
	19.	PAGE HEADER
	20.	VIDEO BG
	21.	WORKS
	22.	FEATURES CONTENT
	23.	LISTING CONTENT
	24.	FULL MEDIA CONTENT
	25.	INTRODUCTION
	26. OUR TEAM
	27.	NEWS
	28.	SAY HELLO
	29.	LOGOS
	30.	FOOTER
	31.	RESPONSIVE TABLET FIXES
	32. REPSONSIVE MOBILE FIXES



*/
/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css?family=Playfair+Display|Poppins:300,400,600,800&display=swap&subset=latin-ext");
/* BODY */
* {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent layout shifts and height jumps */
  transition: padding-top 0.3s ease;
  min-height: 100vh;
}

/* HTML ELEMENT */
img {
  max-width: 100%;
}

body {
  overscroll-behavior: none;
  /* Prevent scroll bouncing on mobile devices */
  -webkit-overflow-scrolling: touch;
  /* Stable scrolling behavior */
  scroll-behavior: smooth;
}

/* COMPREHENSIVE CSS VARIABLES - CONSISTENT COLOR SCHEME */
:root {
  /* Primary Color Scheme */
  --primary-color: #9f8054;
  --secondary-color: #26282b;
  --tertiary-color: #ebcfa7;

  /* RGB values for transparency */
  --primary-color-rgb: 159, 128, 84;
  --secondary-color-rgb: 38, 40, 43;
  --tertiary-color-rgb: 235, 207, 167;

  /* Additional derived colors */
  --primary-light: #b59365;
  --primary-dark: #8a6e47;
  --secondary-light: #3a3d42;
  --secondary-dark: #1a1c1f;
  --tertiary-light: #f2e5d4;
  --tertiary-dark: #d4b896;

  /* Semantic colors */
  --text-primary: var(--secondary-color);
  --text-secondary: #6c757d;
  --text-light: #ffffff;
  --text-muted: #999999;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: var(--secondary-color);
  --border-color: #e9ecef;
  --border-light: #f0f0f0;

  /* Status colors */
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;

  /* Shadow colors */
  --shadow-light: rgba(38, 40, 43, 0.1);
  --shadow-medium: rgba(38, 40, 43, 0.15);
  --shadow-dark: rgba(38, 40, 43, 0.25);

  /* Gradient colors */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  --gradient-tertiary: linear-gradient(
    135deg,
    var(--tertiary-color),
    var(--tertiary-light)
  );

  /* Transparency variations */
  --primary-alpha-10: rgba(159, 128, 84, 0.1);
  --primary-alpha-20: rgba(159, 128, 84, 0.2);
  --primary-alpha-30: rgba(159, 128, 84, 0.3);
  --secondary-alpha-10: rgba(38, 40, 43, 0.1);
  --secondary-alpha-20: rgba(38, 40, 43, 0.2);
  --secondary-alpha-30: rgba(38, 40, 43, 0.3);

  /* Font families */
  --font-family: "Poppins", sans-serif;
  --font-family-ar: "Cairo", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border radius */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;

  /* Transition */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* LANG AR */
body:not(.lang-ar) {
  font-family: var(--font-family);
}

.lang-ar {
  font-family: var(--font-family-ar);
}

.lang-ar [data-language-direction="on"] {
  direction: rtl;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .lang-ar [data-language-direction="on"] {
    direction: rtl;
    text-align: center;
  }
}

/* CUSTOM CLASSES */
.overflow {
  overflow: hidden;
}

/* LINKS */
a {
  -webkit-transition: var(--transition-normal);
  -moz-transition: var(--transition-normal);
  -ms-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  color: #fff;
}

a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* CUSTOM CONTAINER */
.container {
  max-width: 1280px;
}

/* FORM ELEMENTS */
input[type="text"] {
  width: 100%;
  height: 54px;
  border: 1px solid var(--border-color);
  padding: 0 var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  font-family: var(--font-family);
}

input[type="text"]:focus {
  border-color: var(--primary-color);
  box-shadow: 0;
  outline: none;
}

textarea {
  width: 100%;
  height: 160px;
  border: 1px solid var(--border-color);
  padding: var(--spacing-md) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  font-family: var(--font-family);
  resize: vertical;
}

textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-alpha-10);
  outline: none;
}

button[type="submit"] {
  height: 54px;
  border: none;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0 var(--spacing-xl);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
}

button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-medium);
}

/* ODOMETER */
.odometer {
  line-height: 1;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-car {
  padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-car .odometer-digit {
  padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
  left: 0;
}

/* ACCORDION */
.accordion {
  width: 100%;
  float: left;
  background: #fff;
  padding: 0;
}
.accordion .card {
  background: none;
  border-radius: 0;
  margin-top: -1px;
  border: 1px solid #eaebee;
}
.accordion .card .card-header {
  background: none;
  padding: 0;
  border-bottom: none;
}
.accordion .card .card-header a {
  width: 100%;
  float: left;
  font-weight: 500;
  padding: 20px 25px;
  color: #26282b;
  font-weight: 600;
}
.accordion .card .card-header a:before {
  content: "+";
  float: left;
  text-align: center;
  margin-right: 8px;
  color: #26282b;
  font-weight: 600;
}
.accordion .card .card-header a:hover {
  color: #9f8054;
  text-decoration: none;
}
.accordion .card .card-body {
  width: 100%;
  border-top: 1px solid #eee;
  line-height: 26px;
}
.accordion .card [aria-expanded="true"] {
  color: #9f8054 !important;
}
.accordion .card [aria-expanded="true"]:before {
  content: "-" !important;
  color: #9f8054 !important;
}

/* PAGINATION */
.pagination {
  display: flex;
}
.pagination .page-item {
  display: inline-block;
  margin-right: 6px;
}
.pagination .page-item.active .page-link {
  background: #9f8054;
  color: #fff;
  border-color: transparent;
  position: relative;
  z-index: 2;
}
.pagination .page-item.active .page-link:hover {
  background: #9f8054;
  border-color: transparent;
  color: #fff;
}
.pagination .page-item .page-link {
  display: inline-block;
  border-radius: 0 !important;
  padding: 15px 20px;
  color: #26282b;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #dee2e6;
  line-height: 1;
}
.pagination .page-item .page-link:hover {
  background: none;
  border-color: #dee2e6;
  color: #9f8054;
}

/* GALLERY SLIDER*/
.gallery-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  text-align: center;
  margin: 30px 0;
  background: #26282b;
}
.gallery-container .swiper-wrapper {
  width: 100%;
  float: left;
  position: relative;
}
.gallery-container .swiper-slide {
  width: 80%;
  margin: 0;
  opacity: 0.6;
}
.gallery-container .swiper-slide.swiper-slide-active {
  width: 80%;
  opacity: 1;
}
.gallery-container .swiper-slide img {
  width: 100%;
}
.gallery-container .gallery-pagination {
  bottom: 20px;
  position: absolute;
  z-index: 2;
}
.gallery-container .gallery-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.gallery-container
  .gallery-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ebcfa7;
  opacity: 1;
}

/* VIDEO BG */
.video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  background: #26282b;
  background: -moz-linear-gradient(
    161deg,
    #26282b 0%,
    #26282b 49%,
    #9f8054 100%
  );
  background: -webkit-linear-gradient(
    161deg,
    #26282b 0%,
    #26282b 49%,
    #9f8054 100%
  );
  background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#9f8054",GradientType=1);
}
.video-bg video {
  min-width: 100%;
  min-height: 100%;
  float: left;
  opacity: 0.15;
}

/* NAV PILLS */
.nav-pills {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.nav-pills .nav-item {
  display: inline-block;
  margin-right: 30px;
}
.nav-pills .nav-item:last-child {
  margin-right: 0;
}
.nav-pills .nav-item .nav-link {
  background: none;
  color: #26282b;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
}
.nav-pills .nav-item .nav-link.active {
  border-bottom: 2px solid #26282b;
}

/* BREADCRUMB */
.breadcrumb {
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: none;
}
.breadcrumb .breadcrumb-item {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  transition: var(--transition-fast);
}
.breadcrumb .breadcrumb-item:first-child:before {
  display: none;
}
.breadcrumb .breadcrumb-item:before {
  content: "»";
  color: var(--text-light);
  font-weight: 400;
  padding: 0 var(--spacing-sm);
  opacity: 0.7;
}
.breadcrumb .breadcrumb-item.active {
  color: var(--tertiary-color);
}
.breadcrumb .breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--tertiary-color);
  text-decoration: none;
}

/* HAMBURGER */
.hamburger {
  position: relative;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.hamburger span {
  display: block;
  height: 2px;
  width: 30px;
  background: #fff;
  opacity: 1;
  position: absolute;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  width: 10px;
  top: 19px;
}
.hamburger span:nth-child(4) {
  width: 6px;
  top: 19px;
  left: 15px;
}
.hamburger.open {
  margin: 0;
}
.hamburger.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: 20px;
}
.hamburger.open span:nth-child(3) {
  width: 30px;
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.hamburger.open span:nth-child(4) {
  opacity: 0;
  left: 20px;
}
.hamburger:hover span:nth-child(4) {
  width: 20px;
  left: 10px;
}

/* PRELAODER */
.preloader {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 3000;
  background: #ebcfa7;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 0.95s;
  overflow: hidden;
}
.preloader * {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.preloader .layer {
  width: 100%;
  height: 100dvh;
  position: absolute;
  left: 0;
  top: 0;
  background: #333;
  transition-delay: 0.3s;
}
.preloader .inner {
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 2;
}
.preloader .inner figure {
  display: block;
  margin-bottom: 10px;
  transition-delay: 0.1s;
}
.preloader .inner figure img {
  height: 60px;
}
.preloader .inner p {
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  display: block;
}

/* TRANSITION OVERLAY */
.transition-overlay {
  width: 100%;
  height: 100dvh;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  background: #ebcfa7;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  overflow: hidden;
}
.transition-overlay .layer {
  width: 100%;
  height: 100dvh;
  position: absolute;
  right: -100%;
  top: 0;
  background: #333;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 0.6s;
}
.transition-overlay.active {
  left: 0;
}
.transition-overlay.active .layer {
  right: 0;
}

/* PAGE LOADED */
.page-loaded .preloader {
  right: -100%;
}

.page-loaded .preloader .inner figure {
  opacity: 0;
  transform: scale(1.5);
}

.page-loaded .preloader .inner p {
  transform: translateY(20px);
  opacity: 0;
}

.page-loaded .preloader .layer {
  left: -100%;
}

.page-loaded .navbar .container .upper-side {
  transform: translateY(0);
}

.page-loaded .navbar .container .menu {
  opacity: 1;
}

.page-loaded .slider .slider-container {
  transform: scale(1);
  opacity: 1;
}

/* SIDE NAVIGATION */
.side-navigation {
  width: 400px;
  max-width: 100%;
  height: 100dvh;
  min-height: 400px;
  position: fixed;
  left: -100%;
  top: 0;
  background: #26282b;
  z-index: 10;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.side-navigation .menu {
  display: block;
  margin-bottom: 20px;
}
.side-navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
.side-navigation .menu ul li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 3px 0;
  list-style: none;
  position: relative;
}
.side-navigation .menu ul li ul {
  width: 100%;
  display: none;
  padding-left: 20px;
  margin-bottom: 10px;
}
.side-navigation .menu ul li ul li {
  display: block;
}
.side-navigation .menu ul li ul li a {
  font-size: 2vw;
}
.side-navigation .menu ul li a {
  display: inline-block;
  color: #fff;
  font-size: 3vw;
  font-weight: 600;
}
.side-navigation .menu ul li a:hover {
  color: #ebcfa7;
  text-decoration: none;
}
.side-navigation .side-content {
  width: 100%;
  display: block;
}
.side-navigation figure {
  display: block;
  margin-bottom: 30px;
}
.side-navigation figure img {
  height: 40px;
}
.side-navigation address {
  display: block;
  margin-bottom: 20px;
}
.side-navigation h6 {
  font-weight: 600;
  font-size: 20px;
}
.side-navigation p {
  display: block;
  margin-bottom: 30px;
}
.side-navigation p a {
  color: #fff;
}
.side-navigation .gallery {
  margin-bottom: 20px;
  padding: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.side-navigation .gallery li {
  width: 33.33333%;
  float: left;
  margin: 0;
  padding: 0 5px;
  list-style: none;
}
.side-navigation .gallery li img {
  width: 100%;
}
.side-navigation .social-media {
  width: 100%;
  float: left;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}
.side-navigation .social-media li {
  float: left;
  margin-left: 5px;
  padding: 0;
  list-style: none;
}
.side-navigation .social-media li a {
  width: 40px;
  height: 40px;
  float: left;
  text-align: center;
  line-height: 42px;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.side-navigation .social-media li a:hover {
  color: #26282b;
  background: #ebcfa7;
}
.side-navigation.active {
  left: 0;
}

/* Mobile Navigation Overlay */
.side-navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.side-navigation-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  transition: all 0.3s ease;
}

/* Navbar styles for pages without page header */
body.no-page-header .navbar {
  position: fixed;
  top: 0;
  background: rgba(38, 40, 43, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(235, 207, 167, 0.2);
  z-index: 999;
}

body.no-page-header .navbar .container .upper-side {
  padding: 15px 0;
  transform: translateY(0);
  transition-delay: 0s;
}

body.no-page-header .navbar .container .upper-side .logo img {
  height: 60px;
}

body.no-page-header .navbar .container .menu {
  opacity: 1;
  transition-delay: 0s;
}

body.no-page-header .navbar .container .upper-side .phone-email {
  font-size: 14px;
}

body.no-page-header .navbar .container .upper-side .phone-email h4 {
  font-size: 15px;
}

/* Add body padding for pages without page header */
body.no-page-header {
  padding-top: 140px;
}

/* Fixed Navigation on Scroll */
.navbar.fixed {
  position: fixed;
  top: 0;
  background: rgba(38, 40, 43, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(235, 207, 167, 0.2);
  z-index: 999;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar.fixed .container .upper-side {
  padding: 15px 0;
  transform: translateY(0);
}

.navbar.fixed .container .upper-side .logo img {
  height: 60px;
  transition: height 0.3s ease;
}

.navbar.fixed .container .menu {
  opacity: 1;
  transition-delay: 0s;
}

.navbar.fixed .container .upper-side .phone-email {
  font-size: 14px;
}

.navbar.fixed .container .upper-side .phone-email h4 {
  font-size: 15px;
}

/* Add body padding when navbar is fixed to prevent content jump */
body.navbar-fixed {
  /* padding-top: 140px; */
}

.navbar .container {
  position: relative;
  flex-direction: column;
}
.navbar .container .upper-side {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  align-items: center;
  transform: translateY(-80px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 1.2s;
}
.navbar .container .upper-side .logo {
  margin-left: 0;
}
.navbar .container .upper-side .logo img {
  height: 90px;
}
.navbar .container .upper-side .phone-email {
  margin-right: 0;
  margin-left: auto;
  margin-top: 5px;
  text-align: right;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lang-ar .navbar .container .upper-side .phone-email {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.navbar .container .upper-side .phone-email img {
  float: right;
  height: 34px;
  margin-left: 15px;
}
.navbar .container .upper-side .phone-email h4 {
  margin-bottom: -2px;
  margin-top: 3px;
  font-size: 17px;
  font-weight: 600;
  display: -webkit-box;
  line-height: 1;
}
.navbar .container .upper-side .phone-email small {
  line-height: 1;
}
.navbar .container .upper-side .phone-email small a {
  opacity: 0.5;
  color: #fff;
}
.navbar .container .upper-side .phone-email small a:hover {
  text-decoration: none;
  color: #ebcfa7;
  opacity: 1;
}

.navbar .container .upper-side .phone-email-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.lang-ar .navbar .container .upper-side .phone-email-text {
  align-items: flex-start;
  direction: ltr;
}

.navbar .container .upper-side .language {
  margin-right: 40px;
  margin-left: 60px;
  padding: 10px 0;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.navbar .container .upper-side .language a {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-weight: 600;
}
.navbar .container .upper-side .language a:hover {
  color: #ebcfa7;
  text-decoration: none;
}
.navbar .container .upper-side .hamburger {
  width: 30px;
  height: 21px;
  margin-right: 0;
  display: none;
}
.navbar .container .menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 1.4s;
  opacity: 0;
}
.navbar .container .menu ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0;
  margin-top: -1px;
}

.lang-ar .navbar .container .menu ul {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.navbar .container .menu ul li {
  margin: 0;
  margin-left: 40px;
  padding: 0;
  list-style: none;
  position: relative;
}
.navbar .container .menu ul li:hover ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.navbar .container .menu ul li ul {
  min-width: 220px;
  position: absolute;
  left: -35px;
  top: 120%;
  background: #26282b;
  margin: 0;
  padding: 25px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  direction: rtl;
}
.navbar .container .menu ul li ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #26282b transparent;
  position: absolute;
  left: 35px;
  top: -10px;
}
.navbar .container .menu ul li ul li {
  margin: 0;
  padding: 0 35px;
  white-space: nowrap;
  text-align: right;
}
.navbar .container .menu ul li ul li a {
  padding: 8px 0;
}
.navbar .container .menu ul li ul li a:hover {
  border-color: transparent;
}
.navbar .container .menu ul li a {
  color: var(--text-light);
  display: inline-block;
  font-weight: 600;
  font-family: var(--font-family-ar);
  padding: var(--spacing-lg) 0;
  border-top: 1px solid transparent;
  transition: var(--transition-fast);
}

.navbar .container .menu ul li a.active {
  color: var(--tertiary-color);
  border-top: 1px solid var(--tertiary-color);
}

.navbar .container .menu ul li a:hover {
  text-decoration: none;
  color: var(--tertiary-color);
  border-top: 1px solid var(--tertiary-color);
}

/* SLIDER */
.slider {
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
  background: #26282b;
  overflow: hidden;
}
.slider .slider-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(1.3);
  transition-delay: 1.25s;
  opacity: 0;
}
.slider .slider-container .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  background-position: center;
  background-size: auto 120%;
}
.slider .slider-container .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #26282b;
  background: -moz-linear-gradient(
    161deg,
    #26282b 0%,
    #26282b 49%,
    #9f8054 100%
  );
  background: -webkit-linear-gradient(
    161deg,
    #26282b 0%,
    #26282b 49%,
    #9f8054 100%
  );
  background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#9f8054",GradientType=1);
  opacity: 0.65;
}
.slider .slider-container .swiper-slide .container {
  position: relative;
  z-index: 9;
  padding-left: 100px;
}

.slider .slider-container .swiper-slide .container h1 {
  font-size: 3.5vw;
  color: #fff;

  color: #ebcfa7;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .slider .slider-container .swiper-slide .container h1 {
    font-size: 7.5vw;
  }
}

body.lang-ar .slider .slider-container .swiper-slide .container h1 {
  font-family: var(--font-family-ar);
}
.slider .slider-container .swiper-slide .container h1 span {
  display: inline-block;
  position: relative;
}
.slider .slider-container .swiper-slide .container h1 span:before {
  content: "";
  width: 247px;
  height: 70px;
  position: absolute;
  left: 0;
  top: 40px;
  background: url(../images/title-mark.png) center no-repeat;
  background-size: contain;
  z-index: -1;
}
.slider .slider-container .swiper-slide .container h2 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}
.slider .slider-container .swiper-slide .container a {
  display: inline-flex;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border: 2px solid #ebcfa7;
  padding: 20px 40px;
  box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.slider .slider-container .swiper-slide .container a i {
  margin-left: 10px;
}
.slider .slider-container .swiper-slide .container a:hover {
  text-decoration: none;
  background: #9f8054;
  border-color: #9f8054;
}
.slider .slider-container .swiper-slide .container figure {
  float: left;
  margin-left: 40px;
  margin-bottom: 0;
}
.slider .slider-container .swiper-slide .container figure img {
  height: 60px;
}
.slider .slider-container .inner-elements {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.slider .slider-container .inner-elements .container {
  position: relative;
  height: 100dvh;
}
.slider .slider-container .inner-elements .container .social-media {
  width: 20px;
  position: absolute;
  left: 15px;
  top: calc(50% + 60px);
  transform: translateY(-50%);
  z-index: 4;
  text-align: center;
}
.slider .slider-container .inner-elements .container .social-media h6 {
  width: 120px;
  color: #fff;
  transform: rotate(90deg);
  transform-origin: left;
  margin-left: 9px;
  font-weight: 600;
  margin-bottom: 120px;
  font-size: 14px;
}
.slider .slider-container .inner-elements .container .social-media ul {
  margin: 0;
  padding: 0;
}
.slider .slider-container .inner-elements .container .social-media ul:before {
  content: "";
  width: 1px;
  height: 42px;
  background: #fff;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 10px;
}
.slider .slider-container .inner-elements .container .social-media ul li {
  margin: 0;
  padding: 3px 0;
  list-style: none;
}
.slider .slider-container .inner-elements .container .social-media ul li a {
  color: #fff;
  font-size: 12px;
}
.slider
  .slider-container
  .inner-elements
  .container
  .social-media
  ul
  li
  a:hover {
  color: #ebcfa7;
}
.slider .slider-container .inner-elements .container .pagination {
  width: auto;
  position: absolute;
  left: auto;
  right: 15px;
  bottom: 20px;
  z-index: 4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 50px;
}
.slider
  .slider-container
  .inner-elements
  .container
  .pagination
  .swiper-pagination-current {
  font-size: 40px;
  font-weight: 800;
  margin-right: 5px;
}
.slider
  .slider-container
  .inner-elements
  .container
  .pagination
  .swiper-pagination-total {
  font-size: 20px;
  margin-left: 5px;
}
.slider .slider-container .inner-elements .container .button-prev {
  width: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% + 60px);
  z-index: 4;
  transform: rotate(90deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform-origin: bottom;
  margin-top: -60px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.slider .slider-container .inner-elements .container .button-prev:hover {
  color: #ebcfa7;
}
.slider .slider-container .inner-elements .container .button-prev:after {
  content: "";
  width: 42px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: calc(-100% - 20px);
  top: 5px;
}
.slider .slider-container .inner-elements .container .button-next {
  width: 40px;
  position: absolute;
  right: 10px;
  top: calc(50% + 60px);
  z-index: 4;
  transform: rotate(90deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  transform-origin: bottom;
  margin-top: 60px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.slider .slider-container .inner-elements .container .button-next:hover {
  color: #ebcfa7;
}

/* PAGE HEADER */
.page-header {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  /* margin-bottom: var(--spacing-xl); */
  padding-top: 80px; /* Only padding to clear navbar */
}

@media only screen and (max-width: 991px) {
  .page-header {
    height: 500px;
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .page-header {
    height: 400px;
    padding-top: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .page-header {
    height: 320px;
    padding-top: 50px;
  }
}

.page-header:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gradient-secondary);
  opacity: 0.8;
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header .container h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--tertiary-color);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 4px var(--shadow-dark);
  font-family: var(--font-family-ar);
}
.page-header .container p {
  display: block;
  color: var(--text-light);
  font-size: 1.25rem;
  margin: 0 0 var(--spacing-xl) 0;
  opacity: 0.9;
  text-shadow: 0 1px 2px var(--shadow-dark);
}
.page-header .container .breadcrumb {
  display: inline-flex;
  background: var(--primary-alpha-20);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-sm) var(--spacing-lg);
  margin: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.lang-ar .page-header .container .breadcrumb {
  left: inherit;
  right: 15px;
}

/* INTRO */
.intro {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.intro figure {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 5px;
  /* background: #ebcfa7; */
  position: relative;
}
.intro figure .pattern-bg {
  width: 120%;
  height: 100%;
  position: absolute;
  left: 5%;
  top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
  display: none;
  opacity: 0;
}
.intro figure .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  /* transform: translate(85px, -65px); */
}
.intro figure .holder img {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  width: 525px;
}
.intro .content-box {
  display: block;
  padding-left: 10%;
}
.intro .content-box b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.intro .content-box h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.intro .content-box h4 span {
  color: #9f8054;
}
.intro .content-box h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.intro .content-box p {
  display: block;
  /* padding-right: 40%; */
  margin-bottom: 30px;
}
.intro .content-box a {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
}
.intro .content-box a img {
  height: 46px;
  margin-right: 15px;
}
.intro .content-box a:hover {
  color: #9f8054;
  text-decoration: none;
}

/* LOGOS */
.logos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 100px 0;
}
.logos * {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.logos .col-lg-2 {
  border-right: 1px dashed #eee;
}
.logos .col-lg-2:last-child {
  border-right: none;
}
.logos figure {
  width: 100%;
  margin: 0;
  position: relative;
}
.logos figure:hover img {
  opacity: 0;
  transform: scale(1.2);
}
.logos figure:hover h6 {
  opacity: 1;
  transform: scale(1);
}
.logos figure img {
  width: 100%;
}
.logos figure h6 {
  width: 100%;
  height: 20px;
  line-height: 20px;
  margin: 0;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  text-align: center;
  opacity: 0;
  font-weight: 800;
  font-size: 13px;
  transform: scale(1.1);
}

/* BENEFITS */
.benefits {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
  background: #f9f9f9;
  text-align: center;
}
.benefits .col {
  border-right: 1px solid #eee;
  padding-top: 20px;
  padding-bottom: 20px;
}
.benefits .col:nth-child(odd) {
  margin-top: 50px;
}
.benefits .col:hover figure:after {
  opacity: 1;
  transition: 300ms all ease;
}
.benefits .col:last-child {
  border-right: none;
}
.benefits b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.benefits h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.benefits h4 span {
  color: #9f8054;
}
.benefits h3 {
  font-weight: 600;
  margin-bottom: 50px;
}
.benefits figure {
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.benefits figure:after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  top: 0;
  background: #ebcfa7;
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  margin-left: -35px;
  transition: 300ms all ease;
}
.benefits figure img {
  height: 70px;
  position: relative;
  z-index: 2;
}
.benefits h6 {
  font-weight: 600;
  font-size: 14px;
}
.benefits .odometer {
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}
.benefits .extra {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  transform: translateY(10px);
}

/* RECENT GALLERY */
.recent-gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0;
}
.recent-gallery b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.recent-gallery h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.recent-gallery h4 span {
  color: #9f8054;
}
.recent-gallery h3 {
  font-weight: 600;
  /* padding-right: 40%; */
  margin-bottom: 30px;
}
.recent-gallery .link {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-bottom: 10px;
}
.recent-gallery .link i {
  margin-left: 10px;
}
.recent-gallery .link:hover {
  text-decoration: none;
}
.recent-gallery .link:hover:before {
  width: 100%;
}
.recent-gallery .link:before {
  content: "";
  width: 60px;
  height: 2px;
  background: #26282b;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.recent-gallery figure {
  display: block !important;
  margin: 0;
  position: relative;
}
.recent-gallery .col-md-4:nth-child(1) {
  margin-top: 100px;
}
.recent-gallery .col-md-4:nth-child(2) {
  margin-top: 0;
}
.recent-gallery .col-md-4:nth-child(3) {
  margin-top: 80px;
}

/* PROPERTY CALCULATOR */
.property-calculator {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 150px;
  margin-top: 100px;
  position: relative;
}
.property-calculator figure {
  display: inline-block;
  margin-bottom: 0;
  margin-top: -20px;
  background: #ebcfa7;
  position: relative;
}
.property-calculator figure:before {
  content: "";
  width: 50vw;
  height: 100%;
  background: #ebcfa7;
  position: absolute;
  left: -50vw;
  top: 0;
}
.property-calculator figure .pattern-bg {
  width: 120%;
  height: 100%;
  position: absolute;
  left: 5%;
  top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
}
.property-calculator figure .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(85px, -35px);
}
.property-calculator figure .holder img {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  width: 525px;
}
.property-calculator .content-box {
  display: block;
  padding-left: 10%;
}
.property-calculator .content-box b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.property-calculator .content-box h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.property-calculator .content-box h4 span {
  color: #9f8054;
}
.property-calculator .content-box h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.property-calculator .content-box ul {
  display: block;
  margin-bottom: 60px;
  padding: 0;
}
.property-calculator .content-box ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.property-calculator .content-box ul li:nth-child(1) {
  margin-right: 30px;
}
.property-calculator .content-box ul li img {
  height: 35px;
}
.property-calculator .content-box p {
  display: block;
  padding-right: 40%;
  margin-bottom: 30px;
}
.property-calculator .content-box a {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
}
.property-calculator .content-box a img {
  height: 46px;
  margin-right: 10px;
}
.property-calculator .content-box a:hover {
  color: #9f8054;
  text-decoration: none;
}

/* PROPERTY PLANS */
.property-plans {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 150px;
}
.property-plans b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.property-plans h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.property-plans h4 span {
  color: #9f8054;
}
.property-plans h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.property-plans p {
  display: block;
  padding-right: 40%;
  margin-bottom: 30px;
}
.property-plans table {
  display: table;
  margin-bottom: 30px;
  font-size: 15px;
}
.property-plans table tr td {
  padding: 5px 0;
}
.property-plans table tr td:first-child {
  color: #9f8054;
  width: 120px;
  font-weight: 600;
}
.property-plans .tab-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.property-plans .tab-nav li {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.property-plans .tab-nav li a {
  color: #26282b;
  font-weight: 600;
}

/* GET CONSULTATION */
.get-consultation {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 150px;
  margin-bottom: 100px;
  background-size: auto 120%;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #e5e4df;
}
.get-consultation .content-box {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 50px;
  margin-bottom: -100px;
  color: #fff;
  background: #9f8054;
  position: relative;
  overflow: hidden;
}
.get-consultation .content-box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 200px 100dvh 0;
  border-color: transparent #ebcfa7 transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.15;
}
.get-consultation b {
  width: 100%;
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.get-consultation h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.get-consultation h4 span {
  color: #ebcfa7;
}
.get-consultation h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.get-consultation p {
  display: block;
  padding-right: 20%;
  margin-bottom: 40px;
}
.get-consultation a {
  height: 60px;
  line-height: 60px;
  float: left;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: #26282b;
  padding: 0 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.get-consultation a i {
  margin-left: 10px;
}
.get-consultation a:hover {
  text-decoration: none;
  background: #fff;
  color: #9f8054;
}

/* RECENT POSTS */
.recent-posts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* padding: 150px 0; */
  padding-bottom: 60px;
}
.recent-posts b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.recent-posts h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.recent-posts h4 span {
  color: #9f8054;
}
.recent-posts small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0.5;
}
.recent-posts small:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #26282b;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 4px;
  opacity: 0.5;
}
.recent-posts .post-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.recent-posts .post-box figure {
  display: block;
  margin-bottom: 20px;
}
.recent-posts .post-box h6 {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.recent-posts .post-box h6 a {
  color: var(--secondary-color);
  display: inline-block;
}
.recent-posts .post-box h6 a:hover {
  color: #9f8054;
  text-decoration: none;
}
.recent-posts .post-box p {
  display: block;
  margin: 0;
}
.recent-posts .post-box span {
  width: 100%;
  display: block;
  font-size: 13px;
  opacity: 0.5;
  margin-bottom: 10px;
}

/* PROPERTY CUSTOMIZATION */
.property-customization {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
  background: #26282b;
  color: #fff;
  position: relative;
}
.property-customization b {
  width: 100%;
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.property-customization h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.property-customization h4 span {
  color: #ebcfa7;
}
.property-customization h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.property-customization a {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 10px;
  margin: 15px 0;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.property-customization a i {
  font-size: 26px;
}

.property-customization a img {
  height: 40px;
  float: left;
  margin-right: 15px;
}
.property-customization a figcaption {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* APARTMENTS */
.apartment {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}
.apartment h2 {
  font-size: 4vw;

  margin-bottom: 20px;
}
.apartment h2 span {
  color: #9f8054;
}
.apartment h6 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
}
.apartment h5 {
  margin-bottom: 70px;
  font-weight: 600;
  opacity: 0.5;
}
.apartment h4 {
  margin-bottom: 20px;
  font-weight: 600;
}
.apartment p {
  line-height: 1.7;
  margin-bottom: 20px;
}
.apartment p strong {
  font-weight: 600;
}
.apartment ul {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  padding-left: 20px;
}
.apartment ul li {
  margin: 0;
  padding: 4px 0;
}
.apartment blockquote {
  display: inline-block;
  padding: 30px;
  background: #ebcfa7;
  margin-bottom: 40px;
}
.apartment blockquote p {
  margin: 0;
}
.apartment blockquote strong {
  font-size: 20px;
}
.apartment figure {
  width: 100%;
  display: block;
  margin-bottom: 70px;
  margin-top: 50px;
}
.apartment .gallery-slider {
  width: 80%;
  margin-top: 50px;
  margin-bottom: 70px;
}
.apartment .gallery-slider .gallery-container {
  margin: 0;
}
.apartment .property-plan {
  display: inline-block;
}
.apartment .property-infos {
  display: inline-block;
  background: #9f8054;
  color: #fff;
  padding: 50px;
  margin-bottom: 50px;
  float: left;
  margin-right: 100px;
}
.apartment .property-infos .odometer {
  font-size: 60px;
  font-weight: 800;
  position: relative;
  display: inline-flex;
}
.apartment .property-infos .odometer:after {
  content: attr(data-text);
  font-size: 30px;
  font-weight: 600;
  margin-top: 10px;
  margin-left: 5px;
  opacity: 0.5;
}
.apartment .property-infos p:last-child {
  margin-bottom: 0;
}

/* ABOUT CONTENT */
.about-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}
.about-content h2 {
  font-size: 4vw;

  margin-bottom: 20px;
}
.about-content h2 span {
  color: #9f8054;
}
.about-content h6 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
}
.about-content h5 {
  margin-bottom: 40px;
  font-weight: 600;
  opacity: 0.5;
}
.about-content h4 {
  margin-bottom: 20px;
  font-weight: 600;
}
.about-content p {
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-content p strong {
  font-weight: 600;
}
.about-content ul {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  padding-left: 20px;
}
.about-content ul li {
  margin: 0;
  padding: 4px 0;
}
.about-content blockquote {
  display: inline-block;
  padding: 30px;
  background: #ebcfa7;
  margin-bottom: 40px;
}
.about-content blockquote p {
  margin: 0;
}
.about-content blockquote strong {
  font-size: 20px;
}
.about-content .video-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  margin-top: 30px;
}
.about-content .video-content video {
  width: 100%;
  height: 100%;
  float: left;
}
.about-content .gallery-container {
  margin-bottom: 50px;
}

/* CERTIFICATES */
.certificates {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}
.certificates b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}

.certificates h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}

.lang-ar .certificates h4 {
  font-family: var(--font-family-ar);
}

.certificates h4 span {
  color: #9f8054;
}
.certificates small {
  display: block;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.7;
}
.certificates small:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #26282b;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 4px;
  opacity: 0.5;
}
.certificates figure {
  display: block;
  margin: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.certificates figure img {
  width: 100%;
}

/* FACILITIES */
.facilities {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 135px 0;
}
.facilities b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.facilities h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.facilities h4 span {
  color: #9f8054;
}
.facilities small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0.5;
}
.facilities small:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #26282b;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 4px;
  opacity: 0.5;
}
.facilities figure {
  width: 100%;
  float: left;
  margin: 15px 0;
  padding: 50px 30px;
  box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
}
.facilities figure img {
  height: 70px;
  float: left;
}
.facilities figure figcaption {
  width: calc(100% - 90px);
  float: right;
}
.facilities figure figcaption h5 {
  font-weight: 600;
  font-size: 16px;
}
.facilities figure figcaption p {
  font-size: 14px;
  opacity: 0.5;
  margin: 0;
}

/* FAQ */
.faq {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}
.faq .sidebox {
  width: calc(100% - 70px);
  float: left;
  margin-left: 70px;
  padding: 40px 30px;
  text-align: center;
  background: #9f8054;
  color: #fff;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
}
.faq .sidebox i {
  font-size: 100px;
  margin-bottom: 20px;
  display: inline-block;
}
.faq .sidebox h3 {
  display: block;

  margin-bottom: 20px;
}
.faq .sidebox p {
  color: #fff;
}

/* SALES OFFICES */
.sales-offices {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 135px 0;
}
.sales-offices .office-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  margin: 15px 0;
  border: 1px solid #eee;
}
.sales-offices .office-box h5 {
  margin-bottom: 20px;
  font-size: 26px;
}
.sales-offices .office-box address {
  margin-bottom: 25px;
}
.sales-offices .office-box a {
  height: 44px;
  line-height: 44px;
  display: inline-block;
  padding: 0 20px;
  background: #26282b;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.sales-offices .office-box a i {
  margin-right: 7px;
}
.sales-offices .office-box a:hover {
  text-decoration: none;
}

/* INTRO VIDEO */
.intro-video {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
  text-align: center;
}
.intro-video b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.intro-video h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.intro-video h4 span {
  color: #9f8054;
}
.intro-video h3 {
  font-weight: 600;
  margin-bottom: 50px;
}
.intro-video .video-container {
  width: 100%;
  float: left;
  margin: 0;
  padding: 5px;
  background: #ebcfa7;
}
.intro-video .video-container video {
  width: 100%;
  float: left;
}

/* MODERN OFFICES SECTION - REDESIGNED */
.modern-offices-section {
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.modern-offices-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"><circle cx="20" cy="20" r="1" fill="%239f8054" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%239f8054" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%239f8054" opacity="0.1"/></svg>')
    repeat;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.section-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #9f8054 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #9f8054 0%, #ebcfa7 100%);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.title-divider::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  background: #9f8054;
  border-radius: 50%;
}

.modern-offices-grid {
  position: relative;
  z-index: 2;
}

/* Fix for Bootstrap Grid Layout */
.modern-offices-grid .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.modern-offices-grid .col-lg-4,
.modern-offices-grid .col-md-6,
.modern-offices-grid .col-sm-12 {
  display: flex;
  flex-direction: column;
  padding-right: 15px;
  padding-left: 15px;
}

/* Ensure equal height cards */
.modern-offices-grid .modern-office-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Property listing pages grid fixes */
.villa-item,
.apartment-item,
.land-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.villa-item .modern-office-card,
.apartment-item .modern-office-card,
.land-item .modern-office-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Apartment image styling */
.apartment-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}

.apartment-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #9f8054 0%, #ebcfa7 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

.apartment-price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.apartment-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row-reverse;

  justify-content: space-between;
  /* margin-bottom: 20px; */
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(159, 128, 84, 0.1);
  padding: 8px 12px;
  border-radius: 15px;
  border: 1px solid rgba(159, 128, 84, 0.2);
  font-size: 14px;
  color: #9f8054;
  font-weight: 500;
  min-width: calc(48% - 10px);
  max-width: calc(48% - 10px);
}

.spec-item i {
  font-size: 16px;
  color: #9f8054;
}

.spec-item span {
  color: var(--secondary-dark);
}

.apartment-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.apartment-actions .map-btn,
.apartment-actions .cta-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Responsive fixes */
@media (max-width: 991px) {
  .modern-offices-grid .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .modern-offices-grid .col-lg-4,
  .modern-offices-grid .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .apartment-actions {
    flex-direction: column;
  }

  .apartment-actions .map-btn,
  .apartment-actions .cta-btn {
    width: 100%;
  }
}

.modern-office-card {
  height: 100%;
  perspective: 1000px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.card-inner {
  position: relative;
  height: 100%;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modern-office-card:hover .card-inner {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(159, 128, 84, 0.3);
  transform: rotateX(2deg) rotateY(2deg);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
}

.office-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #9f8054 0%, #ebcfa7 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(159, 128, 84, 0.3);
}

.office-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
  border-radius: 20px;
  transition: all 0.4s ease;
}

.modern-office-card:hover .office-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(159, 128, 84, 0.4);
}

.office-icon i {
  font-size: 32px;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.modern-office-card:hover .office-icon i {
  transform: scale(1.1);
}

.office-badge {
  background: linear-gradient(
    135deg,
    var(--tertiary-color) 0%,
    var(--primary-light) 100%
  );
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.office-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.modern-office-card:hover .office-badge::before {
  left: 100%;
}

.card-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.office-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 1.3;
  transition: all 0.4s ease;
}

.modern-office-card:hover .office-title {
  color: #9f8054;
  transform: translateX(5px);
}

.office-address {
  margin-bottom: 24px;
}

.office-address p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.office-address i {
  margin-right: 12px;
  color: #9f8054;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.modern-office-card:hover .office-address p {
  color: #495057;
  transform: translateX(3px);
}

.office-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  margin-top: 22px;
}

.feature-tag {
  background: rgba(159, 128, 84, 0.1);
  color: #9f8054;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(159, 128, 84, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(159, 128, 84, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.modern-office-card:hover .feature-tag {
  background: rgba(159, 128, 84, 0.15);
  border-color: rgba(159, 128, 84, 0.3);
  transform: translateY(-2px);
}

.modern-office-card:hover .feature-tag::before {
  left: 100%;
}

.card-footer {
  margin-top: auto;
  position: relative;
  z-index: 3;
  padding: 0.5rem 0;
}

.map-btn {
  width: 100%;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.map-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9f8054 0%, #ebcfa7 100%);
  transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.map-btn:hover::before {
  left: 0;
}

.btn-text,
.btn-arrow {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  font-size: 13px;
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(44, 62, 80, 0.3);
}

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

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

.card-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at center,
    rgba(159, 128, 84, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
  pointer-events: none;
  transition: all 0.6s ease;
}

.modern-office-card:hover .card-bg-pattern {
  transform: translate(50%, -50%) scale(1.2);
  background: radial-gradient(
    circle at center,
    rgba(159, 128, 84, 0.15) 0%,
    transparent 70%
  );
}

/* Unique badge colors for different offices */
.modern-office-card:nth-child(1) .office-badge {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
}

.modern-office-card:nth-child(2) .office-badge {
  background: linear-gradient(
    135deg,
    var(--tertiary-color) 0%,
    var(--tertiary-dark) 100%
  );
  color: var(--secondary-color);
}

.modern-office-card:nth-child(3) .office-badge {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-color) 100%
  );
}

.modern-office-card:nth-child(4) .office-badge {
  background: linear-gradient(
    135deg,
    var(--secondary-light) 0%,
    var(--secondary-color) 100%
  );
}

.modern-office-card:nth-child(5) .office-badge {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--tertiary-color) 100%
  );
  color: var(--secondary-color);
}

.modern-office-card:nth-child(6) .office-badge {
  background: linear-gradient(
    135deg,
    var(--tertiary-light) 0%,
    var(--tertiary-color) 100%
  );
  color: var(--secondary-color);
}

/* Hover animation for grid */
.modern-offices-grid:hover .modern-office-card:not(:hover) {
  opacity: 0.7;
  transform: scale(0.98);
}

/* Loading animation */
@keyframes cardLoad {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.modern-office-card {
  animation: cardLoad 0.8s ease-out forwards;
}

.modern-office-card:nth-child(1) {
  animation-delay: 0.1s;
}
.modern-office-card:nth-child(2) {
  animation-delay: 0.2s;
}
.modern-office-card:nth-child(3) {
  animation-delay: 0.3s;
}
.modern-office-card:nth-child(4) {
  animation-delay: 0.4s;
}
.modern-office-card:nth-child(5) {
  animation-delay: 0.5s;
}
.modern-office-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .modern-offices-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .card-inner {
    min-height: 380px;
    padding: 24px;
  }

  .office-icon {
    width: 56px;
    height: 56px;
  }

  .office-icon i {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .modern-offices-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .card-inner {
    min-height: 360px;
    padding: 20px;
  }

  .office-title {
    font-size: 1.3rem;
  }

  .modern-office-card:hover {
    transform: translateY(-5px);
  }

  .modern-office-card:hover .card-inner {
    transform: none;
  }

  .modern-offices-grid:hover .modern-office-card:not(:hover) {
    opacity: 1;
    transform: scale(1);
  }
}

@media only screen and (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .card-inner {
    min-height: 340px;
    padding: 16px;
  }

  .office-features {
    margin-bottom: 24px;
  }

  .feature-tag {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* PRESS RELEASES */
.press-relases {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 135px 0;
}
.press-relases figure {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 15px 0;
  border: 1px solid #eee;
}
.press-relases figure a {
  width: 40%;
}
.press-relases figure a img {
  width: 100%;
}
.press-relases figure figcaption {
  width: 60%;
  padding-left: 20px;
}
.press-relases figure figcaption h5 {
  display: block;
  font-size: 22px;

  margin-bottom: 15px;
}
.press-relases figure figcaption p {
  font-size: 14px;
}
.press-relases figure figcaption small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  opacity: 0.5;
}

/* PHOTO GALLERY */
.photo-gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}
.photo-gallery .gallery-filter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0;
}
.photo-gallery .gallery-filter li {
  display: inline-block;
  margin-right: 25px;
  padding: 0;
  list-style: none;
}
.photo-gallery .gallery-filter li a {
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.photo-gallery .gallery-filter li a.current {
  border-bottom: 2px solid #ebcfa7;
}
.photo-gallery .gallery-filter li a:hover {
  color: #9f8054;
  text-decoration: none;
}
.photo-gallery .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-left: -4px;
  margin-right: -4px;
  padding: 0;
}
.photo-gallery .gallery li {
  width: 25%;
  margin: 0;
  padding: 4px;
  list-style: none;
}
.photo-gallery .gallery li img {
  width: 100%;
  float: left;
}

/* SALES TEAM */
.sales-team {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}
.sales-team figure {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #eee;
  margin: 15px 0;
}
.sales-team figure img {
  width: 50%;
  display: inline-block;
}
.sales-team figure figcaption {
  display: inline-block;
}
.sales-team figure figcaption h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.sales-team figure figcaption h4 span {
  color: #9f8054;
}
.sales-team figure figcaption small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0.5;
}
.sales-team figure figcaption small:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #26282b;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 4px;
  opacity: 0.5;
}
.sales-team figure figcaption ul {
  display: block;
  margin: 0;
  padding: 0;
}
.sales-team figure figcaption ul li {
  display: inline-block;
  margin: 0;
  margin-right: 15px;
  padding: 0;
  list-style: none;
}
.sales-team figure figcaption ul li a {
  font-size: 14px;
  font-weight: 600;
}
.sales-team figure figcaption ul li a i {
  margin-right: 6px;
  font-size: 12px;
  font-weight: 400;
}
.sales-team figure figcaption ul li a:hover {
  text-decoration: none;
  color: #9f8054;
}

/* ERROR 404*/
.error404 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
  text-align: center;
}
.error404 figure {
  display: block;
  margin-bottom: 60px;
  padding: 0 10%;
}
.error404 figure img {
  width: 100%;
}
.error404 h2 {
  font-size: 50px;
  font-weight: 800;
  color: #9f8054;
}
.error404 p {
  display: block;
  margin-bottom: 40px;
}
.error404 a {
  height: 60px;
  line-height: 56px;
  display: inline-block;
  color: #9f8054;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  border: 2px solid #ebcfa7;
  padding: 0 40px;
  box-shadow: 0 0 20px rgba(235, 207, 167, 0.4);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.error404 a:hover {
  text-decoration: none;
  color: #fff;
  background: #9f8054;
  border-color: #9f8054;
}

/* BLOG */
.blog {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}
.blog .post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.blog .post .post-image {
  width: 100%;
  float: left;
  margin-bottom: 0;
}
.blog .post .post-image img {
  width: 100%;
}
.blog .post .post-content {
  width: calc(100% - 60px);
  float: left;
  background: #fff;
  margin: 0 30px;
  margin-top: -100px;
  padding: 30px;
}
.blog .post .post-content.single {
  width: 100%;
  margin: 0;
  margin-top: 50px;
  padding: 0;
}
.blog .post .post-content .post-title {
  font-weight: 800;
  margin-bottom: 20px;
}
.blog .post .post-content .post-title a {
  color: #26282b;
}
.blog .post .post-content .post-title a:hover {
  color: #9f8054;
  text-decoration: none;
}
.blog .post .post-content .post-tags {
  width: 100%;
  float: left;
}
.blog .post .post-content .post-tags i {
  font-size: 19px;
  float: left;
  margin-right: 10px;
  color: #9f8054;
  margin-top: 4px;
}
.blog .post .post-content .post-tags ul {
  display: block;
  margin: 0;
  padding: 0;
}
.blog .post .post-content .post-tags ul li {
  float: left;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.blog .post .post-content .post-tags ul li a {
  color: #26282b;
  text-decoration: underline;
}
.blog .post .post-content ul {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  padding-left: 20px;
}
.blog .post .post-content ul li {
  margin: 0;
  padding: 4px 0;
}
.blog .post .post-content blockquote {
  display: inline-block;
  padding: 30px;
  background: #ebcfa7;
  margin-bottom: 40px;
}
.blog .post .post-content blockquote p {
  margin: 0;
}
.blog .post .post-content blockquote strong {
  font-size: 20px;
}
.blog .post .post-content .post-intro {
  width: 100%;
  float: left;
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 1.6;
}
.blog .post .post-content .post-author {
  width: 100%;
  float: left;
  line-height: 60px;
  margin-bottom: 20px;
}
.blog .post .post-content .post-author img {
  width: 60px;
  float: left;
  border-radius: 50%;
  margin-right: 10px;
}
.blog .post .post-content .post-author span {
  float: left;
  opacity: 0.5;
  margin-right: 5px;
}
.blog .post .post-content .post-author a {
  color: #26282b;
}
.blog .sidebar {
  width: calc(100% - 50px);
  display: flex;
  flex-wrap: wrap;
  margin-left: 50px;
  border-left: 1px solid #eee;
  padding-left: 50px;
}
.blog .sidebar .widget {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.blog .sidebar .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.blog .sidebar .widget .title {
  width: 100%;
  display: block;

  margin-bottom: 20px;
}
.blog .sidebar .widget .categories {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.blog .sidebar .widget .categories li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 2px 0;
  list-style: none;
}
.blog .sidebar .widget .categories li:before {
  content: "»";
  margin-right: 9px;
  color: #9f8054;
}
.blog .sidebar .widget .categories li span {
  float: right;
  color: #9f8054;
}
.blog .sidebar .widget .categories li a {
  color: #26282b;
}
.blog .sidebar .widget .categories li a:hover {
  color: #9f8054;
}
.blog .sidebar .widget form {
  width: 100%;
  display: block;
}
.blog .sidebar .widget form input[type="text"] {
  width: calc(100% - 50px);
  float: left;
  border: 1px solid #ebcfa7;
  border-right: none;
}
.blog .sidebar .widget form button[type="submit"] {
  width: 50px;
  padding: 0;
}
.blog .sidebar .widget .tags {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.blog .sidebar .widget .tags li {
  float: left;
  margin-right: 8px;
  margin-bottom: 6px;
  padding: 0;
  list-style: none;
}
.blog .sidebar .widget .tags li a {
  height: 30px;
  line-height: 30px;
  float: left;
  border: 1px solid #ebcfa7;
  padding: 0 10px;
  font-size: 13px;
  color: #9f8054;
  font-weight: 600;
}
.blog .sidebar .widget .tags li a:hover {
  background: #9f8054;
  color: #fff;
  border-color: #9f8054;
  text-decoration: none;
}
.blog .sidebar .widget .side-gallery {
  margin-left: -3px;
  margin-right: -3px;
  padding: 0;
}
.blog .sidebar .widget .side-gallery li {
  width: 33.33333%;
  float: left;
  margin: 0;
  padding: 3px;
  list-style: none;
}
.blog .sidebar .widget .side-gallery li a {
  width: 100%;
  float: left;
  background: #26282b;
}
.blog .sidebar .widget .side-gallery li a:hover img {
  opacity: 1;
}
.blog .sidebar .widget .side-gallery li a img {
  opacity: 0.5;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

/* CONTACT */
.contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0;
}
.contact b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
}
.contact h4 {
  display: block;
  font-size: 30px;

  margin-bottom: 15px;
}
.contact h4 span {
  color: #9f8054;
}
.contact small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  opacity: 0.5;
}
.contact small:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #26282b;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 4px;
  opacity: 0.5;
}
.contact address {
  display: block;
  margin-bottom: 50px;
}
.contact address strong {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.contact address p {
  display: block;
  margin: 0;
}
.contact .map {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 100px;
  background: #ebcfa7;
  position: relative;
}
.contact .map:before {
  content: "";
  width: 50vw;
  height: 100%;
  background: #ebcfa7;
  position: absolute;
  left: -50vw;
  top: 0;
}
.contact .map .pattern-bg {
  width: 120%;
  height: 100%;
  position: absolute;
  left: 5%;
  top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
}
.contact .map .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(85px, -35px);
}
.contact .map .holder iframe {
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  width: 525px;
  height: 657px;
  border: none;
}
.contact .contact-form {
  width: 100%;
  display: block;
  padding-left: 10%;
}
.contact .contact-form h5 {
  margin-bottom: 40px;
}
.contact .contact-form #contact {
  display: block;
}
.contact .contact-form #contact .form-group {
  display: block;
  position: relative;
  margin-bottom: 35px;
}
.contact .contact-form #contact .form-group span {
  width: 100%;
  line-height: 54px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 20px;
  z-index: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.contact .contact-form #contact .form-group span.label-up {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
}
.contact .contact-form #contact .form-group input[type="text"] {
  background: none;
  position: relative;
  z-index: 2;
}
.contact .contact-form #contact .form-group input:focus + span {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
}
.contact .contact-form #contact .form-group textarea {
  background: none;
  position: relative;
  z-index: 2;
}
.contact .contact-form #contact .form-group textarea:focus + span {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
}
.contact .contact-form #contact .form-group label.error {
  color: red;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 13px;
}
.contact .contact-form #success,
.contact .contact-form #error {
  display: none;
  float: left;
}
.contact .contact-form #error {
  background: red;
  color: #fff;
}
.contact .contact-form #success {
  background: green;
  color: #fff;
}
.contact .contact-form .alert {
  border: none;
  border-radius: 0;
  padding: 20px 30px;
}

/* FOOTER BAR */
.footer-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -80px;
}
.footer-bar .inner {
  background: #9f8054;
  padding: 60px 30px;
  color: #fff;
}
.footer-bar .inner figure {
  margin-bottom: 20px;
  float: left;
  margin-right: 30px;
}
.footer-bar .inner figure img {
  height: 70px;
}
.footer-bar .inner h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer-bar .inner p {
  font-size: 16px;
  margin: 0;
}
.footer-bar .inner strong {
  font-weight: 600;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 180px;
  padding-bottom: 30px;
  background: #26282b;
}
.footer p {
  color: #fff;
}
.footer .logo {
  height: 90px;
  margin-bottom: 15px;
}
.footer .logo img {
  height: 48px;
}
.footer .select-box {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 15px;
  padding-left: 25px;
  margin-top: 20px;
}
.footer .select-box:hover {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.footer .select-box .dropdown-toggle {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer .select-box .dropdown-toggle:hover {
  text-decoration: none;
}
.footer .select-box .dropdown-toggle img {
  width: 20px;
  margin-right: 5px;
}
.footer .select-box .dropdown-menu {
  width: 100%;
  background: #fff;
  border-radius: 0;
  border: none;
  text-align: right !important;
  margin-left: -25px;
  margin-top: 13px;
}
.footer .select-box .dropdown-menu li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .select-box .dropdown-menu li a {
  display: block;
  padding: 7px 25px;
  font-size: 14px;
  line-height: 1;
}
.footer .select-box .dropdown-menu li a:hover {
  background: none;
  color: #9f8054;
}
.footer .select-box .dropdown-menu li a img {
  width: 20px;
  margin-right: 5px;
}
.footer .footer-menu {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.footer .footer-menu li {
  width: 100%;
  margin: 0;
  padding: 4px 0;
  list-style: none;
}
.footer .footer-menu li a {
  color: #fff;
}
.footer .footer-menu li a:hover {
  color: #ebcfa7;
}
.footer .contact-box {
  float: right;
  color: #fff;
  text-align: right;
}
.lang-ar .footer .contact-box {
  direction: ltr;
}

.footer .contact-box h5 {
  margin-bottom: 10px;
  font-size: 19px;
}
.footer .contact-box h3 {
  font-weight: 600;
  margin: 0;
}
.footer .contact-box p {
  margin-bottom: 10px;
}
.footer .contact-box p a {
  color: #fff;
  opacity: 0.5;
}
.footer .contact-box ul {
  margin: 0;
  margin-top: 20px;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.lang-ar .footer .contact-box ul {
  justify-content: flex-end;
}
.footer .contact-box ul li {
  float: left;
  margin-left: 5px;
  padding: 0;
  list-style: none;
}
.footer .contact-box ul li a {
  width: 40px;
  height: 40px;
  float: left;
  text-align: center;
  line-height: 42px;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.footer .contact-box ul li a:hover {
  color: #26282b;
  background: #ebcfa7;
}
.footer .col-12 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 80px;
  color: #fff;
  font-size: 13px;
}
.footer .col-12 .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.footer .col-12 .creation {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .col-12 .creation a {
  color: #fff;
}

/* FOOTER BAR - Communication Section Enhancement */
.footer-bar .communication-section {
  width: 100%;
  height: 100%;
}

.footer-bar .communication-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 1.5rem;
}

.footer-bar .communication-header figure {
  margin-right: 15px;
  margin-bottom: 0;
}

.footer-bar .communication-header h3 {
  margin: 0;
  color: #fff;
}

.footer-bar .communication-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-bar .communication-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar .communication-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-bar .icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.footer-bar .icon-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.footer-bar .phone-icon {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.footer-bar .phone-icon:before {
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.footer-bar .email-icon {
  background: linear-gradient(135deg, #2196f3, #1976d2);
}

.footer-bar .email-icon:before {
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.footer-bar .whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.footer-bar .whatsapp-icon:before {
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.footer-bar .communication-item:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.footer-bar .communication-item:hover .phone-icon {
  background: linear-gradient(135deg, #66bb6a, #4caf50);
}

.footer-bar .communication-item:hover .email-icon {
  background: linear-gradient(135deg, #42a5f5, #2196f3);
}

.footer-bar .communication-item:hover .whatsapp-icon {
  background: linear-gradient(135deg, #4edba6, #25d366);
}

.footer-bar .contact-info {
  flex: 1;
}

.footer-bar .contact-info h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.footer-bar .contact-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  direction: ltr;
}

.footer-bar .contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bar .contact-info a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ebcfa7, #9f8054);
  transition: width 0.3s ease;
}

.footer-bar .contact-info a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bar .contact-info a:hover:after {
  width: 100%;
}

/* Special Animation Effects */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.footer-bar .communication-item:hover .icon-wrapper i {
  animation: pulse 1.5s infinite;
}

/* Responsive Design for Communication Section */
@media only screen and (max-width: 991px) {
  .footer-bar .communication-items {
    gap: 15px;
  }

  .footer-bar .communication-item {
    padding: 12px;
  }

  .footer-bar .icon-wrapper {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .footer-bar .contact-info h4 {
    font-size: 15px;
  }

  .footer-bar .contact-info p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-bar .communication-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bar .communication-header figure {
    margin-right: 0;
  }

  .footer-bar .communication-items {
    gap: 12px;
  }

  .footer-bar .communication-item {
    padding: 10px;
    gap: 12px;
  }

  .footer-bar .icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-bar .contact-info h4 {
    font-size: 14px;
  }

  .footer-bar .contact-info p {
    font-size: 12px;
  }
}

/* RESPONSIVE MEDIUM FIXES */
@media only screen and (max-width: 1199px),
  only screen and (max-device-width: 1199px) {
  .intro figure .holder {
    transform: translate(65px, -65px);
  }

  .intro figure .holder img {
    width: 450px;
  }

  .property-calculator figure .holder {
    transform: translate(65px, -65px);
  }

  .property-calculator figure .holder img {
    width: 450px;
  }

  .footer-bar .inner p {
    font-size: 15px;
  }

  .footer-bar .inner p br {
    display: none;
  }
}

/* RESPONSIVE TABLET FIXES */
@media only screen and (max-width: 991px),
  only screen and (max-device-width: 991px) {
  .side-navigation .side-content {
    display: none;
  }

  .side-navigation .menu {
    display: block;
  }

  .navbar .container .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #26282b;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .navbar .container .menu.active {
    display: block;
  }

  .navbar .container .menu ul {
    flex-direction: column;
    margin: 0;
    padding: 20px 0;
  }

  .navbar .container .menu ul li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar .container .menu ul li:last-child {
    border-bottom: none;
  }

  .navbar .container .menu ul li a {
    display: block;
    padding: 15px 20px;
    border-top: none !important;
    font-size: 16px;
  }

  .navbar .container .menu ul li ul {
    position: static;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 0;
    display: none;
  }

  .navbar .container .menu ul li ul.show {
    display: block;
  }

  .navbar .container .menu ul li ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar .container .menu ul li ul li a {
    padding: 12px 40px;
    font-size: 14px;
  }

  /* RTL Support for Mobile Menu */
  .lang-ar .navbar .container .menu ul li a {
    text-align: right;
  }

  .lang-ar .navbar .container .menu ul li ul li a {
    text-align: right;
    padding: 12px 40px 12px 20px;
  }

  .navbar .container .upper-side .hamburger {
    display: block !important;
    margin-left: auto;
  }

  /* Fixed Navigation Mobile Styles */
  .navbar.fixed .container .upper-side {
    padding: 6px 0;
  }

  .navbar.fixed .container .upper-side .logo img {
    height: 40px;
  }

  .navbar.fixed .container .upper-side .phone-email {
    display: flex;
    font-size: 10px;
    margin-right: 6px;
    gap: 4px;
  }

  .navbar.fixed .container .upper-side .phone-email h4 {
    font-size: 11px;
  }

  .navbar.fixed .container .upper-side .phone-email img {
    height: 18px;
    margin-left: 4px;
  }

  .navbar.fixed .container .upper-side .language {
    margin-left: 6px;
    margin-right: 6px;
    padding-right: 6px;
  }

  .navbar.fixed .container .upper-side .language a {
    margin: 0 1px;
    font-size: 10px;
  }

  body.navbar-fixed {
    padding-top: 60px;
  }

  /* No-page-header mobile styles */
  body.no-page-header {
    padding-top: 80px;
  }

  body.no-page-header .navbar .container .upper-side {
    padding: 6px 0;
  }

  body.no-page-header .navbar .container .upper-side .logo img {
    height: 40px;
  }

  body.no-page-header .navbar .container .upper-side .phone-email {
    display: flex;
    font-size: 10px;
    margin-right: 6px;
    gap: 4px;
  }

  body.no-page-header .navbar .container .upper-side .phone-email h4 {
    font-size: 11px;
  }

  body.no-page-header .navbar .container .upper-side .phone-email img {
    height: 18px;
    margin-left: 4px;
  }

  body.no-page-header .navbar .container .upper-side .language {
    margin-left: 6px;
    margin-right: 6px;
    padding-right: 6px;
  }

  body.no-page-header .navbar .container .upper-side .language a {
    margin: 0 1px;
    font-size: 10px;
  }

  .page-header {
    height: 500px;
    margin-top: 10px;
    padding-top: var(--spacing-lg);
  }

  .page-header .container h1 {
    font-size: 8vw;
  }

  .intro figure {
    width: 100%;
    margin-bottom: 0;
  }

  .intro figure .pattern-bg {
    width: 100%;
    left: 0;
  }

  .intro figure .holder {
    transform: translate(0, 0);
    padding: 0 15%;
  }

  .intro figure .holder img {
    width: 100%;
  }

  .intro .content-box {
    padding-left: 0;
  }

  .logos figure img {
    padding: 0 10%;
  }

  .about-content {
    padding: 80px 0;
  }

  .sales-offices {
    padding: 80px 0;
  }

  .press-relases {
    padding: 80px 0;
  }

  .photo-gallery {
    padding: 80px 0;
  }

  .photo-gallery .gallery li {
    width: 33.33333%;
  }

  .intro-video {
    padding: 80px 0;
  }

  .faq .sidebox {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }

  .apartment {
    padding: 80px 0;
  }

  .apartment .property-infos {
    width: 100%;
    margin-right: 0;
  }

  .apartment .property-plan {
    margin: 50px 0;
  }

  .apartment .gallery-slider {
    width: 100%;
  }

  .facilities {
    padding: 80px 0;
  }

  .blog .sidebar {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .sales-team {
    padding: 80px 0;
  }

  .sales-team figure figcaption {
    width: 50%;
  }

  .sales-team figure figcaption h4 {
    font-size: 21px;
  }

  .sales-team figure figcaption small {
    margin-bottom: 20px;
  }

  .error404 {
    padding: 80px 0;
  }

  .recent-gallery {
    padding: 80px 0;
  }

  .recent-gallery h3 {
    padding-right: 0;
  }

  .recent-gallery .col-md-4 {
    margin-top: 0 !important;
  }

  .recent-gallery figure {
    margin-top: 80px;
  }

  .benefits {
    padding: 80px 0;
  }

  .property-calculator {
    padding-bottom: 80px;
    margin-top: 0;
  }

  .property-calculator .col-lg-6:nth-child(1) {
    order: 2;
  }

  .property-calculator .col-lg-6:nth-child(2) {
    order: 1;
  }

  .property-calculator figure {
    width: 100%;
  }

  .property-calculator figure:before {
    display: none;
  }

  .property-calculator figure .pattern-bg {
    width: 100%;
    left: 0;
  }

  .property-calculator figure .holder {
    transform: translate(0, -45px);
    padding: 0 15%;
  }

  .property-calculator figure .holder img {
    width: 100%;
  }

  .property-calculator .content-box {
    padding-left: 0;
    margin-bottom: 150px;
  }

  .property-plans {
    padding-bottom: 80px;
  }

  .property-plans .nav-pills {
    margin-top: 40px;
  }

  .recent-posts {
    padding: 80px 0;
  }

  .recent-posts .post-box {
    margin: 25px 0;
  }

  .property-customization {
    padding: 80px 0;
  }

  .video-bg video {
    float: right;
  }

  .certificates {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

  .contact address p a {
    display: block;
  }

  .contact .contact-form {
    padding-left: 0;
    margin-top: 50px;
  }

  .blog {
    padding: 80px 0;
  }

  .footer-bar .inner {
    padding: 30px;
  }

  .footer-bar .inner .col-lg-4 {
    margin: 20px 0;
  }

  .footer-bar .inner figure {
    width: 70px;
    margin-right: 0;
  }

  .footer-bar .inner figure img {
    height: 50px;
  }

  .footer {
    padding-top: 150px;
  }

  .footer .select-box {
    margin-bottom: 20px;
  }

  .footer .footer-menu {
    padding: 0;
  }

  .footer .contact-box {
    float: none;
    text-align: center;
    margin-top: 40px;
    direction: ltr;
  }

  .footer .contact-box ul {
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 10px;
    flex-direction: row;
  }

  .footer .col-12 {
    margin-top: 20px;
  }
}

/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 767px),
  only screen and (max-device-width: 767px) {
  .side-navigation {
    width: 80vw;
  }

  .page-header .container h1 {
    font-size: 10vw;
  }

  .page-header .container .breadcrumb {
    width: calc(100% - 30px);
  }

  .navbar .container .upper-side .phone-email {
    display: flex;
    font-size: 12px;
    margin-right: 10px;
    margin-left: 0;
    gap: 8px;
  }

  .navbar .container .upper-side .phone-email h4 {
    font-size: 13px;
    margin-bottom: 0;
  }

  .navbar .container .upper-side .phone-email small {
    display: none;
  }

  .navbar .container .upper-side .phone-email img {
    height: 24px;
    margin-left: 8px;
  }

  .navbar .container .upper-side .language {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .navbar .container .upper-side .language a {
    margin: 0 3px;
    font-size: 12px;
  }

  /* RTL Support for Mobile Navigation */
  .lang-ar .navbar .container .upper-side .phone-email {
    margin-left: 10px;
    margin-right: 0;
  }

  .lang-ar .navbar .container .upper-side .phone-email-text {
    align-items: flex-start;
  }

  .lang-ar .navbar .container .upper-side .phone-email img {
    margin-right: 8px;
    margin-left: 0;
  }

  .lang-ar .navbar .container .upper-side .language {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    padding-left: 10px;
    padding-right: 0;
  }

  .lang-ar .navbar .container .upper-side .hamburger {
    /* margin-right: auto; */
    margin-left: 0;
  }

  .navbar .container .upper-side .hamburger {
    margin-left: auto;
    margin-right: 0;
    display: block !important;
    order: 3;
  }

  /* Ensure proper flex order on mobile */
  .navbar .container .upper-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .navbar .container .upper-side .logo {
    order: 1;
    flex-shrink: 0;
  }

  .navbar .container .upper-side .phone-email {
    order: 2;
    flex-shrink: 1;
    min-width: 0;
  }

  .navbar .container .upper-side .language {
    order: 2;
    flex-shrink: 0;
  }

  /* Fixed Navigation Responsive Styles */
  .navbar.fixed .container .upper-side {
    padding: 8px 0;
  }

  .navbar.fixed .container .upper-side .logo img {
    height: 45px;
  }

  .navbar.fixed .container .upper-side .phone-email {
    display: flex;
    font-size: 11px;
    margin-right: 8px;
    gap: 6px;
  }

  .navbar.fixed .container .upper-side .phone-email h4 {
    font-size: 12px;
  }

  .navbar.fixed .container .upper-side .phone-email img {
    height: 20px;
    margin-left: 6px;
  }

  .navbar.fixed .container .upper-side .language {
    margin-left: 8px;
    margin-right: 8px;
    padding-right: 8px;
  }

  .navbar.fixed .container .upper-side .language a {
    margin: 0 2px;
    font-size: 11px;
  }

  body.navbar-fixed {
    padding-top: 90px;
  }

  .slider .slider-container .inner-elements .container .social-media {
    display: none;
  }

  .slider .slider-container .swiper-slide .container {
    padding-left: 15px;
    padding-right: 40px;
  }

  .slider .slider-container .swiper-slide .container figure {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .benefits .col {
    width: 50%;
    flex-basis: auto;
    border-right: none;
  }

  .benefits .col:nth-child(odd) {
    margin-top: 0;
  }

  .apartment h2 {
    font-size: 9vw;
  }

  .apartment figure {
    margin: 15px 0;
  }

  .apartment h4 {
    margin-top: 30px;
  }

  .about-content h2 {
    font-size: 10vw;
  }

  .blog .post .post-image {
    margin-bottom: 30px;
  }

  .blog .post .post-content {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .contact .map .holder iframe {
    width: 100%;
    height: 450px;
  }

  .side-navigation .menu ul li a {
    font-size: 5vw;
  }

  .side-navigation .menu ul li ul li a {
    font-size: 4vw;
  }

  .certificates figure {
    margin: 15px 0;
  }

  .footer .col-12 .creation {
    float: left;
    margin-top: 5px;
  }
}

/* Extra Small Mobile Screens (≤480px) */
@media only screen and (max-width: 480px) {
  .navbar .container .upper-side .phone-email {
    font-size: 10px;
    gap: 6px;
    margin-right: 6px;
  }

  .navbar .container .upper-side .phone-email h4 {
    font-size: 0.9rem;
    margin: 0;
  }

  .navbar .container .upper-side .phone-email img {
    height: 20px;
    margin-left: 6px;
  }

  .navbar .container .upper-side .language {
    margin-left: 6px;
    margin-right: 6px;
    padding-right: 6px;
  }

  .navbar .container .upper-side .language a {
    margin: 0 2px;
    font-size: 10px;
  }

  .navbar.fixed .container .upper-side .phone-email {
    font-size: 9px;
    gap: 3px;
    margin-right: 4px;
  }

  .navbar.fixed .container .upper-side .phone-email h4 {
    font-size: 10px;
  }

  .navbar.fixed .container .upper-side .phone-email img {
    height: 16px;
    margin-left: 3px;
  }

  .navbar.fixed .container .upper-side .language a {
    margin: 0 1px;
    font-size: 9px;
  }

  .navbar.fixed .container .upper-side .logo img {
    height: 35px;
  }

  .page-header {
    height: 450px;
    margin-top: 0;
    padding-top: var(--spacing-md);
  }

  body.navbar-fixed {
    padding-top: 0 !important;
  }

  /* No-page-header extra small mobile styles */
  body.no-page-header {
    padding-top: 55px;
  }

  body.no-page-header .navbar .container .upper-side .phone-email {
    font-size: 9px;
    gap: 3px;
    margin-right: 4px;
  }

  body.no-page-header .navbar .container .upper-side .phone-email h4 {
    font-size: 10px;
  }

  body.no-page-header .navbar .container .upper-side .phone-email img {
    height: 16px;
    margin-left: 3px;
  }

  body.no-page-header .navbar .container .upper-side .language a {
    margin: 0 1px;
    font-size: 9px;
  }

  body.no-page-header .navbar .container .upper-side .logo img {
    height: 35px;
  }
}

/* === MODERN CONTACT PAGE STYLES === */

/* Contact Hero Section */
.modern-contact-hero {
  padding: 120px 0 80px;
  padding-top: 250px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .modern-contact-hero {
    padding-top: 160px !important;
  }
}

.modern-contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/slide01.jpg") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.modern-contact-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.modern-contact-hero .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modern-contact-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.modern-contact-hero .gradient-text {
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-contact-hero .hero-description {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Cards Section */
.modern-contact-cards {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.modern-contact-cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.contact-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  height: 100%;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.contact-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact-card .card-icon.phone-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-card .card-icon.email-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.contact-card:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-card .card-icon i {
  font-size: 32px;
  color: white;
}

.contact-card .card-content {
  position: relative;
  z-index: 2;
}

.contact-card .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-card .card-description {
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-card .phone-link,
.contact-card .email-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-card .phone-link:hover,
.contact-card .email-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.contact-card .card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 12px 25px;
  border-radius: 25px;
  border: 2px solid var(--primary-color);
  background: transparent;
}

.contact-card .card-action:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--primary-alpha-30);
}

.contact-card .card-action i {
  transition: transform 0.3s ease;
}

.contact-card .card-action:hover i {
  transform: translateX(5px);
}

/* Modern Contact Form Section */
.modern-contact-form {
  padding: 100px 0;
  background: white;
  position: relative;
}

.form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.form-description {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.modern-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.modern-form .form-group.full-width {
  grid-column: span 2;
}

.modern-form .input-wrapper {
  position: relative;
}

.modern-form .input-wrapper input,
.modern-form .input-wrapper textarea {
  width: 100%;
  padding: 20px 0 15px;
  border: none;
  border-bottom: 2px solid #e9ecef;
  background: transparent;
  font-size: 16px;
  color: #2c3e50;
  transition: all 0.3s ease;
  outline: none;
  font-family: "Poppins", sans-serif;
}

.modern-form .input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 25px;
}

.modern-form .input-wrapper label {
  position: absolute;
  left: 0;
  top: 20px;
  color: #6c757d;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
  transform-origin: left top;
}

.modern-form .input-wrapper input:focus,
.modern-form .input-wrapper textarea:focus {
  border-bottom-color: var(--primary-color);
}

.modern-form .input-wrapper input:focus + label,
.modern-form .input-wrapper textarea:focus + label,
.modern-form .input-wrapper input:valid + label,
.modern-form .input-wrapper textarea:valid + label {
  transform: translateY(-25px) scale(0.8);
  color: var(--primary-color);
  font-weight: 500;
}

.modern-form .input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  transition: all 0.3s ease;
}

.modern-form .input-wrapper input:focus ~ .input-highlight,
.modern-form .input-wrapper textarea:focus ~ .input-highlight {
  width: 100%;
}

.modern-form .form-actions {
  text-align: center;
  margin-bottom: 30px;
}

.modern-submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px var(--primary-alpha-30);
}

.modern-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--primary-alpha-40);
}

.modern-submit-btn .btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.modern-submit-btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}

.modern-submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.modern-submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Form Messages */
#form-messages {
  margin-top: 30px;
}

.form-message {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 20px 25px;
  border-radius: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}

.form-message.success-message {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-message.error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.form-message i {
  font-size: 18px;
}

/* Form Error States */
.modern-form .input-wrapper.error input,
.modern-form .input-wrapper.error textarea {
  border-bottom-color: #dc3545;
  color: #dc3545;
}

.modern-form .input-wrapper.error label {
  color: #dc3545;
}

.modern-form .input-wrapper.error .input-highlight {
  background: #dc3545;
  width: 100%;
}

/* Loading States */
.modern-submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.modern-submit-btn.loading .btn-icon {
  animation: spin 1s linear infinite;
}

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

/* Active Label States */
.modern-form .input-wrapper label.active {
  transform: translateY(-25px) scale(0.8);
  color: #667eea;
  font-weight: 500;
}

/* Ripple Animation */
.modern-submit-btn .btn-ripple.animate {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Enhanced Hover Effects */
.contact-card .card-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.contact-card:hover .card-icon::after {
  width: 100%;
  height: 100%;
}

/* Smooth Transitions for Form Elements */
.modern-form .input-wrapper input,
.modern-form .input-wrapper textarea {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-form .input-wrapper label {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus Ring for Accessibility */

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

.modern-submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* Contact Sidebar */
.contact-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
}

.sidebar-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-card .card-icon-small {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.sidebar-card .card-icon-small.whatsapp-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.sidebar-card h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
}

.sidebar-card .card-body p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Info Items */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

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

.info-item i {
  color: #667eea;
  font-size: 18px;
  margin-top: 2px;
}

.info-item div {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
  margin-bottom: 3px;
}

.info-value {
  color: #6c757d;
  font-size: 14px;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  text-decoration: none;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  font-size: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link.facebook {
  background: linear-gradient(135deg, #3b5998 0%, #1e3a8a 100%);
}

.social-link.instagram {
  background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-link.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-link:hover {
  text-decoration: none;
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .modern-contact-hero .hero-title {
    font-size: 3rem;
  }

  .form-container {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .modern-contact-hero {
    padding: 100px 0 60px;
  }

  .modern-contact-hero .hero-title {
    font-size: 2.5rem;
  }

  .modern-contact-cards {
    padding: 80px 0;
  }

  .modern-contact-form {
    padding: 80px 0;
  }

  .modern-form .form-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .modern-form .form-group.full-width {
    grid-column: span 1;
  }

  .form-container {
    padding: 30px;
    margin-bottom: 50px;
  }

  .contact-sidebar {
    position: static;
  }

  .form-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .modern-contact-hero {
    padding: 80px 0 40px;
  }

  .modern-contact-hero .hero-title {
    font-size: 2rem;
  }

  .modern-contact-hero .hero-description {
    font-size: 1rem;
  }

  .modern-contact-cards {
    padding: 60px 0;
  }

  .modern-contact-form {
    padding: 60px 0;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .form-container {
    padding: 25px;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .modern-form .input-wrapper input,
  .modern-form .input-wrapper textarea {
    font-size: 14px;
  }

  .modern-submit-btn {
    padding: 15px 30px;
    font-size: 14px;
  }

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

@media (max-width: 480px) {
  .modern-contact-hero .hero-title {
    font-size: 1.75rem;
  }

  .contact-card {
    padding: 25px 15px;
  }

  .contact-card .card-icon {
    width: 60px;
    height: 60px;
  }

  .contact-card .card-icon i {
    font-size: 24px;
  }

  .form-container {
    padding: 20px;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .modern-form .form-grid {
    gap: 20px;
  }

  .sidebar-card {
    padding: 20px;
  }

  .social-links {
    gap: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* === SERVICE DETAIL SECTION === */
.modern-service-detail-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.badge.bg-warning {
  font-size: 14px;
  position: absolute;
  right: 12px;
  top: 12px;
}

.modern-service-detail-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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Service Header */
.service-header {
  position: relative;
  z-index: 2;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.service-icon-large:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.service-icon-large i {
  font-size: 48px;
  color: white;
  transition: all 0.3s ease;
}

.service-badge-large {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-description {
  font-size: 1rem;
  color: #6c757d;
  /* margin-bottom: 30px; */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Features */
.service-features-section {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

.features-header {
  margin-bottom: 60px;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
}

.features-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--tertiary-color)
  );
  border-radius: 2px;
}

.features-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-list {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.features-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--tertiary-color) 50%,
    var(--primary-color) 100%
  );
  border-radius: 25px 25px 0 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-color-rgb), 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.12);
  border-color: rgba(var(--primary-color-rgb), 0.15);
  background: rgba(255, 255, 255, 0.95);
}

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

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 3px 12px rgba(var(--primary-color-rgb), 0.25);
}

.feature-item:hover .feature-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(var(--primary-color-rgb), 0.3);
}

.feature-icon i {
  font-size: 14px;
  color: white;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-number {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(var(--primary-color-rgb), 0.2);
}

.feature-number span {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-number {
  background: linear-gradient(
    135deg,
    var(--tertiary-color),
    var(--tertiary-light)
  );
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

.feature-item:hover .feature-number span {
  color: var(--primary-color);
}

.feature-content {
  flex: 1;
  padding-top: 4px;
}

.feature-title {
  margin: 0;
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.feature-description {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.4;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.feature-item:hover .feature-title {
  color: var(--primary-color);
  font-weight: 700;
}

.feature-item:hover .feature-description {
  color: var(--text-primary);
}

/* Add subtle animation on load */
.feature-item {
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-item:nth-child(6) {
  animation-delay: 0.6s;
}
.feature-item:nth-child(7) {
  animation-delay: 0.7s;
}

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

/* Service Navigation */
.service-navigation {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

.nav-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-nav-card {
  transition: all 0.3s ease;
  position: relative;
}

.service-nav-card.current {
  opacity: 0.6;
  pointer-events: none;
}

.service-nav-card.current::after {
  content: "✓";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #10ac84;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  z-index: 3;
}

.service-nav-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  height: 100%;
}

.nav-card-inner {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.nav-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.service-nav-card:hover .nav-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.service-nav-card:hover .nav-card-inner::before {
  left: 100%;
}

.nav-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.service-nav-card:hover .nav-icon {
  transform: scale(1.1) rotate(10deg);
}

.nav-icon i {
  font-size: 24px;
  color: white;
}

.nav-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.nav-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.4;
}

/* Contact CTA */
.contact-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px;
  padding: 60px 40px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-section::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-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

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

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn.btn-primary {
  background: white;
  color: #667eea;
  border-color: white;
}

.cta-btn.btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.btn-success {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.cta-btn.btn-success:hover {
  background: transparent;
  color: #25d366;
  border-color: #25d366;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.cta-btn i {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .service-title {
    font-size: 2rem;
  }

  .service-description {
    font-size: 1.1rem;
  }

  .features-list {
    padding: 35px 25px;
    border-radius: 20px;
    margin: 0 10px;
  }

  .feature-item {
    margin-bottom: 25px;
  }

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

  .cta-title {
    font-size: 1.5rem;
  }

  .contact-cta-section {
    padding: 40px 25px;
  }
}

@media (max-width: 767px) {
  .modern-service-detail-section {
    padding: 60px 0;
  }

  .service-icon-large {
    width: 80px;
    height: 80px;
  }

  .service-icon-large i {
    font-size: 32px;
  }

  .service-title {
    font-size: 1.8rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    border-radius: 15px;
  }

  .feature-item:hover {
    transform: translateY(-8px);
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
  }

  .feature-content {
    padding-top: 0;
  }

  .feature-content p {
    font-size: 1.1rem;
  }

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

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

  .cta-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .features-list {
    padding: 18px 16px;
    border-radius: 12px;
    margin: 0 5px;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-subtitle {
    font-size: 1.1rem;
  }

  .feature-item {
    padding: 14px 16px;
    margin-bottom: 14px;
    gap: 12px;
  }

  .feature-number {
    width: 20px;
    height: 20px;
  }

  .feature-number span {
    font-size: 0.65rem;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
  }

  .feature-icon i {
    font-size: 12px;
  }

  .feature-title {
    font-size: 0.9rem;
  }

  .feature-description {
    font-size: 0.75rem;
  }

  .nav-card-inner {
    padding: 20px 15px;
  }

  .contact-cta-section {
    padding: 30px 20px;
    margin: 40px 0;
  }
}

/* RTL Support */
[dir="rtl"] .feature-item:hover {
  transform: translateY(-2px);
}

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

[dir="rtl"] .feature-item {
  text-align: right;
  flex-direction: row-reverse;
}

[dir="rtl"] .features-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* RTL Mobile Support */
@media (max-width: 767px) {
  [dir="rtl"] .feature-item:hover {
    transform: translateY(-8px);
  }

  [dir="rtl"] .feature-icon {
    margin: 0 auto 20px;
  }

  [dir="rtl"] .feature-item {
    text-align: center;
    flex-direction: column;
  }

  [dir="rtl"] .feature-number {
    margin: 0 auto 15px;
  }
}

/* End Service Detail Section Styles */

/* === MODERN FAQ SECTION === */
.modern-faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.modern-faq-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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* FAQ Container */
.modern-faq-container {
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  position: relative;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.faq-item.active {
  background: rgba(102, 126, 234, 0.05);
  border-color: rgba(102, 126, 234, 0.4);
}

.faq-header {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: rgba(102, 126, 234, 0.05);
}

.faq-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.faq-icon i {
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
}

.faq-question {
  flex: 1;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
  color: #667eea;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid rgba(102, 126, 234, 0.2);
}

.faq-item:hover .faq-toggle {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.4);
  transform: scale(1.1);
}

.faq-toggle i {
  font-size: 18px;
  color: #667eea;
  transition: all 0.3s ease;
}

.faq-collapse {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.faq-collapse.show {
  max-height: 500px;
  opacity: 1;
}

.faq-body {
  padding: 0 30px 30px 100px;
  position: relative;
}

.faq-body p {
  margin: 0;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  animation: fadeInUp 0.5s ease;
}

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

/* FAQ Sidebar */
.faq-sidebar {
  position: relative;
  z-index: 2;
}

.support-card,
.quick-links-card,
.cta-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.support-card:hover,
.quick-links-card:hover,
.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.support-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10ac84 0%, #00d2d3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 172, 132, 0.3);
}

.support-card:hover .support-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 35px rgba(16, 172, 132, 0.4);
}

.support-icon i {
  font-size: 28px;
  color: white;
}

.support-title,
.card-title,
.cta-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.support-description,
.cta-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.support-btn,
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.support-btn:hover {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  text-decoration: none;
}

.cta-btn {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.cta-btn:hover {
  background: transparent;
  color: #25d366;
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

/* Quick Links */
.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-list li {
  margin-bottom: 12px;
}

.quick-links-list li:last-child {
  margin-bottom: 0;
}

.quick-links-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 12px;
  background: rgba(102, 126, 234, 0.05);
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.quick-links-list a:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateX(5px);
  text-decoration: none;
  color: #667eea;
}

.quick-links-list i {
  font-size: 16px;
  color: #667eea;
  width: 20px;
  text-align: center;
}

/* CTA Card Special Styling */
.cta-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-card .cta-title {
  color: white;
}

.cta-card .cta-description {
  color: rgba(255, 255, 255, 0.9);
}

/* RTL Support */
[dir="rtl"] .faq-icon {
  margin-right: 0;
  margin-left: 20px;
}

[dir="rtl"] .faq-body {
  padding: 0 100px 30px 30px;
}

[dir="rtl"] .quick-links-list a:hover {
  transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .modern-faq-section {
    padding: 80px 0;
  }

  .faq-header {
    padding: 20px 25px;
  }

  .faq-body {
    padding: 0 25px 25px 80px;
  }

  .support-card,
  .quick-links-card,
  .cta-card {
    padding: 25px;
    margin-bottom: 25px;
  }
}

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

  .faq-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .faq-icon {
    margin: 0 auto 15px;
  }

  .faq-toggle {
    margin-top: 15px;
  }

  .faq-body {
    padding: 0 20px 20px;
    text-align: center;
  }

  .support-icon {
    width: 60px;
    height: 60px;
  }

  .support-icon i {
    font-size: 24px;
  }

  .support-title,
  .card-title,
  .cta-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-item {
    margin-bottom: 15px;
  }

  .faq-header {
    padding: 15px;
  }

  .faq-body {
    padding: 0 15px 15px;
  }

  .support-card,
  .quick-links-card,
  .cta-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .quick-links-list a {
    padding: 10px 12px;
  }
}

/* Animation enhancements */
.faq-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* End Modern FAQ Section Styles */

/* ===============================
   APARTMENT PAGES STYLING
   =============================== */

/* MODERN APARTMENT HERO */
.modern-apartment-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.apartment-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  opacity: 0.85;
  z-index: 1;
}

/* .apartment-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-lg);
  color: var(--tertiary-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
} */

.apartment-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.apartment-hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--tertiary-light);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.apartment-specs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;

  gap: var(--spacing-md);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--glass-bg);
  /* backdrop-filter: blur(10px); */
  border: 1px solid var(--border-glass);
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition-normal);
}

.spec-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-alpha-20);
}

.spec-item i {
  color: var(--secondary-light);
  font-size: 1.1rem;
}

.apartment-price {
  text-align: center;
  /* margin-bottom: var(--spacing-xl); */
}

.price-label {
  display: block;
  color: var(--tertiary-light);
  font-size: 1rem;
  margin-bottom: var(--spacing-xs);
}

.price-amount {
  display: block;
  color: var(--text-light);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.price-currency {
  color: var(--tertiary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: var(--spacing-xs);
}

.apartment-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tertiary-color);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* APARTMENT FEATURES SECTION */
.apartment-features-section {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}

/* APARTMENT GALLERY SECTION */
.apartment-gallery-section {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gallery-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-alpha-60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-link {
  width: 60px;
  height: 60px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.gallery-link:hover {
  transform: scale(1.1);
  color: var(--primary-dark);
  text-decoration: none;
}

/* APARTMENT CTA SECTION */
.apartment-cta-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  color: var(--text-light);
}

.cta-content h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  color: var(--tertiary-light);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* OTHER APARTMENTS SECTION */
.other-apartments-section {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}

.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.apartment-mini-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.apartment-mini-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: var(--bg-primary);
}

.apartment-mini-card .apartment-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.apartment-mini-card .apartment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.apartment-mini-card:hover .apartment-image img {
  transform: scale(1.05);
}

.apartment-mini-card .apartment-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--primary-color);
  color: var(--text-light);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.apartment-mini-card .apartment-content {
  padding: var(--spacing-xl);
}

.apartment-mini-card .apartment-content h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.apartment-mini-card .apartment-price {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

/* RESPONSIVE DESIGN FOR APARTMENTS */
@media (max-width: 991px) {
  .modern-apartment-hero {
    min-height: 80vh;
    background-attachment: scroll;
  }

  .apartment-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row-reverse;
  }

  .spec-item {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-sm);
  }

  .apartment-actions {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
  }

  .apartments-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
  }
}

@media (max-width: 767px) {
  .apartment-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row-reverse;
  }

  .apartment-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .apartments-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .apartment-actions {
    gap: var(--spacing-sm);
  }

  .apartment-actions .btn {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .apartment-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-xs);
    flex-direction: row-reverse;
  }

  .spec-item {
    padding: var(--spacing-xs);
    font-size: 0.9rem;
  }

  .feature-card {
    padding: var(--spacing-lg);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .apartment-mini-card .apartment-content {
    padding: var(--spacing-lg);
  }
}

/* End Apartment Pages Styling */

.footer .contact-box a {
  color: #fff;
}

.lang-ar .footer .contact-box a {
  direction: ltr;
}

.modal-container {
  z-index: 100000;
}

/* ===============================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   Supporting 360px - 1920px with dynamic scaling
   =============================================== */

/* Additional responsive variables for property cards */
@media (max-width: 359px) {
  .modern-office-card {
    min-height: 320px;
  }

  .card-inner {
    padding: 16px;
    min-height: 300px;
  }

  .apartment-image {
    height: 160px !important;
  }

  .office-title {
    font-size: 16px;
  }

  .apartment-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    flex-direction: row-reverse;
  }

  .spec-item {
    flex-direction: column;
    text-align: center;
    padding: 8px 10px;
    font-size: 11px;
  }

  .apartment-actions {
    flex-direction: column;
    gap: 8px;
  }

  .map-btn,
  .cta-btn {
    width: 100%;
    padding: 12px;
    font-size: 12px;
  }
}

/* Small phones (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
  .modern-office-card {
    min-height: 360px;
  }

  .card-inner {
    padding: 18px;
    min-height: 340px;
  }

  .apartment-image {
    height: 180px !important;
  }

  .office-title {
    font-size: 17px;
    line-height: 1.2;
  }

  .apartment-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row-reverse;
  }

  .spec-item {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    font-size: 12px;
  }

  .apartment-actions {
    gap: 10px;
  }

  .map-btn,
  .cta-btn {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* Large phones (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .modern-office-card {
    min-height: 400px;
  }

  .card-inner {
    padding: 20px;
    min-height: 380px;
  }

  .apartment-image {
    height: 200px !important;
  }

  .office-title {
    font-size: 18px;
  }

  .apartment-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;

    gap: 10px;
  }

  .spec-item {
    padding: 12px;
    font-size: 13px;
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .modern-office-card {
    min-height: 440px;
  }

  .card-inner {
    padding: 24px;
    min-height: 420px;
  }

  .apartment-image {
    height: 220px !important;
  }

  .office-title {
    font-size: 19px;
  }

  .apartment-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row-reverse;
  }

  .modern-offices-grid .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
}

/* Small laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .modern-office-card {
    min-height: 480px;
  }

  .card-inner {
    padding: 28px;
    min-height: 460px;
  }

  .apartment-image {
    height: 240px !important;
  }

  .office-title {
    font-size: 20px;
  }

  .modern-offices-grid .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 35px;
  }
}

/* Large laptops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .modern-office-card {
    min-height: 520px;
  }

  .card-inner {
    padding: 32px;
    min-height: 500px;
  }

  .apartment-image {
    height: 260px !important;
  }

  .office-title {
    font-size: 21px;
  }

  .modern-offices-grid .col-lg-4 {
    margin-bottom: 40px;
  }
}

/* Desktops (1400px - 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .modern-office-card {
    min-height: 560px;
  }

  .card-inner {
    padding: 36px;
    min-height: 540px;
  }

  .apartment-image {
    height: 280px !important;
  }

  .office-title {
    font-size: 22px;
  }

  .modern-offices-grid .col-lg-4 {
    margin-bottom: 45px;
  }
}

/* Large desktops (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
  .modern-office-card {
    min-height: 600px;
  }

  .card-inner {
    padding: 40px;
    min-height: 580px;
  }

  .apartment-image {
    height: 300px !important;
  }

  .office-title {
    font-size: 23px;
  }

  .modern-offices-grid .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
    margin-bottom: 50px;
  }
}

/* Ultra-large desktops (1920px+) */
@media (min-width: 1920px) {
  .modern-office-card {
    min-height: 640px;
  }

  .card-inner {
    padding: 44px;
    min-height: 620px;
  }

  .apartment-image {
    height: 320px !important;
  }

  .office-title {
    font-size: 24px;
  }

  .modern-offices-grid .col-lg-4 {
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 55px;
  }
}

/* ===============================================
   ENHANCED GRID RESPONSIVE BEHAVIOR
   =============================================== */

/* Ensure equal height cards across all breakpoints */
.villa-item,
.apartment-item,
.land-item,
.project-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  height: 100%;
}

.villa-item .modern-office-card,
.apartment-item .modern-office-card,
.land-item .modern-office-card,
.project-item .modern-office-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Enhanced container responsive behavior */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    padding: 0 20px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
    padding: 0 25px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    padding: 0 30px;
  }
}

/* ===============================================
   SECTION SPACING RESPONSIVE
   =============================================== */

.modern-offices-section {
  padding: 100px 0;
}

@media (max-width: 359px) {
  .modern-offices-section {
    padding: 40px 0;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 360px) and (max-width: 479px) {
  .modern-offices-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .modern-offices-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .modern-offices-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

@media (min-width: 1400px) {
  .modern-offices-section {
    padding: 120px 0;
  }

  .section-title {
    font-size: 4rem;
  }
}

@media (min-width: 1920px) {
  .modern-offices-section {
    padding: 140px 0;
  }

  .section-title {
    font-size: 4.5rem;
  }
}

/* ===============================================
   ENHANCED TYPOGRAPHY SCALING
   =============================================== */

/* Dynamic font scaling for better readability */
@media (max-width: 359px) {
  .service-description {
    font-size: 13px;
    line-height: 1.4;
  }

  .office-address {
    font-size: 12px;
  }
}

@media (min-width: 360px) and (max-width: 479px) {
  .service-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .office-address {
    font-size: 13px;
  }
}

@media (min-width: 1400px) {
  .service-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .office-address {
    font-size: 15px;
  }
}

@media (min-width: 1920px) {
  .service-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .office-address {
    font-size: 16px;
  }
}

/* ===============================================
   ENHANCED HOVER EFFECTS SCALING
   =============================================== */

/* Disable complex hover effects on small touch devices */
@media (max-width: 767px) and (hover: none) {
  .modern-office-card:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .modern-office-card:hover .card-inner {
    transform: none;
  }

  .modern-office-card:hover .office-icon {
    transform: none;
  }
}

/* Enhanced hover effects for larger screens */
@media (min-width: 1400px) and (hover: hover) {
  .modern-office-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 1920px) and (hover: hover) {
  .modern-office-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  }
}

/* ===============================================
   ACCESSIBILITY ENHANCEMENTS
   =============================================== */

/* Ensure touch targets are large enough on mobile */
@media (max-width: 767px) {
  .map-btn,
  .cta-btn,
  .modal-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .modal-close {
    min-height: 44px;
    min-width: 44px;
  }

  .thumbnail {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Focus indicators for keyboard navigation */
.modern-office-card:focus-within,
.modal-btn:focus,
.map-btn:focus,
.cta-btn:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
  .modern-office-card {
    border: 2px solid #000;
  }

  .property-badge,
  .apartment-badge {
    border: 1px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .modern-office-card,
  .modal-container,
  .loading-spinner {
    transition: none;
    animation: none;
  }

  .modern-office-card:hover {
    transform: none;
  }
}

/* ===============================================
   PRINT OPTIMIZATIONS
   =============================================== */

@media print {
  .modern-offices-section {
    padding: 20px 0;
  }

  .modern-office-card {
    break-inside: avoid;
    margin-bottom: 20px;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .apartment-actions,
  .modal-actions {
    display: none;
  }

  .apartment-image {
    height: 200px !important;
  }
}
