* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Updated to DM Sans for body */
  font-family: 'DM Sans', sans-serif;
}

/* Added Syne for headings to match previous logic */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Syne', sans-serif;
}

/* Update specific elements that need the heading font */
.btn-modern-primary,
.btn-modern-secondary,
.btn-journey,
.project-enquire-btn,
.btn-submit,
#mobileWhatsappBtn,
#enquireBtn {
  font-family: 'Syne', sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-glass {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(30px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-link {
  position: relative;
  padding: 0.3rem 0;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link .link-icon {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Syne', sans-serif;
  /* Explicitly add Syne here */
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover::before {
  width: 300px;
  height: 300px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.mobile-menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.menu-line {
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-line:nth-child(1) {
  top: 12px;
}

.menu-line:nth-child(2) {
  top: 19px;
}

.menu-line:nth-child(3) {
  top: 26px;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
}

.mobile-menu.active {
  max-height: 700px;
}

/* ========== LIGHT THEME SERVICES DROPDOWN ========== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 380px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.dd-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  padding: 12px 14px 6px;
  font-family: 'Syne', sans-serif;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #334155;
  text-decoration: none;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.dd-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.04));
  opacity: 0;
  transition: opacity 0.22s;
  border-radius: 12px;
}

.dd-item:hover::before {
  opacity: 1;
}

.dd-item:hover {
  color: #2563eb;
  transform: translateX(3px);
}

.dd-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dd-item:hover .dd-icon-wrap {
  transform: scale(1.12) rotate(-5deg);
}

.dd-item-text {
  flex: 1;
}

.dd-item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.dd-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 6px 14px;
}

.dropdown-trigger .dropdown-chevron {
  transition: transform 0.25s ease;
  font-size: 10px;
  margin-left: 4px;
}

.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.about-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 15, 30, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.about-overlay.active {
  opacity: 1;
  visibility: visible;
}

.about-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 95%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0a1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.about-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.about-modal::-webkit-scrollbar {
  width: 5px;
}

.about-modal::-webkit-scrollbar-thumb {
  background: #2563eb;
  border-radius: 10px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 95%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 24px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.popup-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.popup-close:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: rotate(90deg);
}

.popup-modal::-webkit-scrollbar {
  width: 6px;
}

.popup-modal::-webkit-scrollbar-thumb {
  background: #2563eb;
  border-radius: 10px;
}

.input-wrapper.error input {
  border-color: #ef4444 !important;
  background-color: #fef2f2;
  padding-right: 3rem;
  animation: shake 0.4s ease-in-out;
}

.input-wrapper.success input {
  border-color: #22c55e !important;
  background-color: #f0fdf4;
  padding-right: 3rem;
}

.error-icon,
.success-icon {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.input-wrapper.error .error-icon {
  opacity: 1;
}

.input-wrapper.success .success-icon {
  opacity: 1;
}

.error-msg {
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-wrapper.error .error-msg {
  opacity: 1;
  height: auto;
  margin-top: 4px;
  max-height: 40px;
}

.iti {
  width: 100%;
}

.input-wrapper.success .error-icon,
.input-wrapper.error .success-icon {
  display: none !important;
}

.bg-slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 25%, #7dd3fc 50%, #a5f3fc 75%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-dot {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 12px;
  height: 6px;
}

.slide-dot.active {
  background-color: white;
  width: 32px;
  border-radius: 10px;
}

@keyframes smooth-drop-in {
  from {
    opacity: 0;
    transform: translateY(-15px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.anim-badge {
  opacity: 0;
  animation: smooth-drop-in 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

@keyframes char-blur-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.char-anim {
  display: inline-block;
  opacity: 0;
  animation: char-blur-in 0.5s ease forwards;
}

@keyframes smooth-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.anim-info-box {
  opacity: 0;
  animation: smooth-slide-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 2.2s forwards;
}

@keyframes smooth-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.anim-feature {
  opacity: 0;
  animation: smooth-zoom-in 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.anim-feature-1 {
  animation-delay: 2.4s;
}

.anim-feature-2 {
  animation-delay: 2.55s;
}

.anim-feature-3 {
  animation-delay: 2.7s;
}

.anim-feature-4 {
  animation-delay: 2.85s;
}

.anim-buttons {
  opacity: 0;
  animation: smooth-slide-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
}

.pulse-dot {
  animation: pulse-dot 2s infinite;
}

.btn-modern-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #6366f1 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-modern-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn-modern-primary>* {
  position: relative;
  z-index: 1;
}

.btn-modern-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.55), 0 0 35px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-modern-primary:hover::before {
  opacity: 1;
}

.btn-modern-primary:active {
  transform: translateY(0px) scale(0.99);
}

.btn-modern-secondary {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-modern-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0f172a;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn-modern-secondary>* {
  position: relative;
  z-index: 1;
}

.btn-modern-secondary i {
  color: #0f172a;
  transition: color 0.4s ease, transform 0.4s ease;
}

.btn-modern-secondary:hover {
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
}

.btn-modern-secondary:hover::before {
  transform: translateX(0);
}

.btn-modern-secondary:hover i {
  color: #ffffff;
  transform: scale(1.1);
}

.btn-modern-secondary:active {
  transform: translateY(0px) scale(0.99);
}

.reveal-element {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-element.active {
  opacity: 1;
  transform: translate(0, 0) scale(1) !important;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.92);
}

@keyframes img-wipe-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 20% 0 round 1.25rem);
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0% 0 round 1.25rem);
    transform: scale(1);
  }
}

.overview-img-wrap {
  opacity: 0;
  transition: none;
}

.overview-img-wrap.active {
  animation: img-wipe-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes card-pop-in {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    filter: blur(2px);
  }

  60% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.property-reveal {
  opacity: 0;
  transition: none;
}

.property-reveal.active {
  animation: card-pop-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.props-header-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.props-header-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-header-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-header-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-map-reveal {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-map-reveal.active {
  opacity: 1;
  transform: translateX(0);
}

.contact-form-reveal {
  opacity: 0;
  transform: translateX(55px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-form-reveal.active {
  opacity: 1;
  transform: translateX(0);
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

@media (max-width: 640px) {
  #scrollToTop {
    bottom: 68px;
  }
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: pulseIn 0.6s ease-out;
}

#scrollToTop:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, #2563eb, #0891b2);
}

@keyframes pulseIn {
  0% {
    transform: scale(0) translateY(20px);
  }

  50% {
    transform: scale(1.1) translateY(0);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-accordion-content.open {
  max-height: 400px;
}

.mobile-accordion-arrow {
  transition: transform 0.3s ease;
}

.mobile-accordion-arrow.open {
  transform: rotate(180deg);
}

.mobile-sub-item {
  display: flex;
  align-items: center;
  padding: 10px 16px 10px 36px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition: color 0.2s;
  text-decoration: none;
}

.mobile-sub-item:hover {
  color: #7dd3fc;
}

.mobile-sub-header {
  padding: 6px 16px 4px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60a5fa;
  font-family: 'Syne', sans-serif;
}

/* ========== OVERVIEW CTA BUTTON ========== */
.btn-journey {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-journey::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 18px;
  background: rgba(37, 99, 235, 0.45);
  filter: blur(12px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-journey:hover::after {
  opacity: 1;
}

.btn-journey:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.btn-journey:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-journey .arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-journey:hover .arrow-icon {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(6px);
}

.btn-journey span,
.btn-journey .arrow-icon {
  position: relative;
  z-index: 1;
}

/* ========== REDESIGNED PROJECT CARDS ========== */
.project-card {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Image area */
.project-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-image img {
  transform: scale(1.08);
}

.project-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(15, 23, 42, 0.65) 100%);
  opacity: 0.7;
  transition: opacity 0.45s ease;
}

.project-card:hover .project-card-image-overlay {
  opacity: 0.85;
}

.project-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Syne', sans-serif;
}

.project-card-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  border-radius: 12px;
  padding: 8px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
  letter-spacing: 0.01em;
  font-family: 'Syne', sans-serif;
}

/* Card body */
.project-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-dev-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  font-family: 'Syne', sans-serif;
}

.project-name {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 4px;
  font-family: 'Syne', sans-serif;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

/* Divider */
.project-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 12px 0;
}

/* Enquire button */
.project-enquire-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
}

.project-enquire-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.project-enquire-btn span,
.project-enquire-btn i {
  position: relative;
  z-index: 1;
}

.project-enquire-btn .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.project-enquire-btn:hover .btn-arrow {
  transform: translateX(6px);
}