/* ===== LOCAL FONT SETUP ===== */

/* Erstoria Font - for headings */
@font-face {
  font-family: 'Erstoria';
  src: url('../webfonts/Erstoria.otf') format('opentype'),
    url('../webfonts/Erstoria.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #1a1e2b;
  line-height: 1.4;
  scroll-behavior: smooth;
}

/* Erstoria for ALL headings */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-content-inner h1,
.section-title,
.pillar-card h3,
.featured-project h3,
.hero-tag,
.logo h1,
.logo span {
  font-family: 'Erstoria', 'Playfair Display', Georgia, serif !important;
}

/* Poppins Regular (400) for body text */
body,
p,
.hero-content-inner p,
.pillar-card p,
.service-card,
.sector,
.testimonial p,
.top-contact span,
.footer-nav a,
.stat-card div,
.capabilities-wrap p,
.insta-feed p,
.preloader-text,
.preloader-sub,
.copy,
.footer-links span,
.hero-stats .stat-card div {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 400;
}

/* Poppins Medium (500) for navigation and buttons */
.nav-links a,
.btn-solid-light,
.btn-outline,
.service-card,
.sector,
.hero-buttons a,
.badge-exp,
.hero-tag {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 500;
}

/* Poppins SemiBold (600) for important text */
.section-title,
.stat-number,
.pillar-card h3,
.featured-project h3,
.hero-content-inner h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
}

.hero-tag,
.hero-content-inner h1,
.hero-content-inner p,
.hero-buttons {
  animation: fadeSlideUp 1.5s forwards;
}

.hero-tag {
  animation-delay: 0.3s;
}

.hero-content-inner h1 {
  animation-delay: 0.4s;
}

.hero-content-inner p {
  animation-delay: 0.55s;
}

.hero-buttons {
  animation-delay: 0.85s;
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0c15;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.circle-dots {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #e38e49;
  border-radius: 50%;
  opacity: 0;
  animation: dotPulse 1.6s ease-in-out infinite;
}

.dot:nth-child(1) {
  top: 0;
  left: 45%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.dot:nth-child(2) {
  top: 14.6%;
  right: 14.6%;
  animation-delay: 0.1s;
}

.dot:nth-child(3) {
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 0.2s;
}

.dot:nth-child(4) {
  bottom: 14.6%;
  right: 14.6%;
  animation-delay: 0.3s;
}

.dot:nth-child(5) {
  bottom: 0;
  left: 45%;
  transform: translateX(-50%);
  animation-delay: 0.4s;
}

.dot:nth-child(6) {
  bottom: 14.6%;
  left: 14.6%;
  animation-delay: 0.5s;
}

.dot:nth-child(7) {
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 0.6s;
}

.dot:nth-child(8) {
  top: 14.6%;
  left: 14.6%;
  animation-delay: 0.7s;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
    background-color: #e38e49;
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
    background-color: #e38e49;
    box-shadow: 0 0 8px rgba(244, 185, 66, 0.6);
  }
}

.preloader-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 20px;
}

.preloader-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  margin-top: 8px;
  letter-spacing: 1px;
}

body.loading {
  overflow: hidden;
  background: #0a0c15;
}

/* ---------- HERO SECTION WITH VIDEO ---------- */
.hero-bg {
  position: relative;
  height: calc(100vh - 120px);
  width: 100%;
  overflow: hidden;
  background-color: #0a0c15;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(97deg, rgba(10, 14, 25, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-flex {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px 24px;
  transform: translateY(30px);
  animation: heroReveal 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  animation-delay: 0.2s;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE HERO - FULL SCREEN WITH NAVIGATION FIX ===== */
@media (max-width: 800px) {

  /* Fix navigation height on mobile */
  .sticky-nav-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 25, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0;
  }

  .main-nav {
    padding: 10px 16px;
  }

  .logo-img {
    height: 40px;
  }

  .hero-bg {
    height: calc(100vh - 80px);
    min-height: 500px;
  }

  .hero-flex {
    height: calc(100vh - 80px);
    min-height: 500px;
    padding: 0 16px;
  }

  .hero-content-inner {
    padding: 20px 16px;
    max-width: 100%;
    margin: 0;
  }

  .hero-content-inner h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-content-inner p {
    font-size: 1rem;
    padding: 0 10px;
    margin-bottom: 24px;
  }

  .hero-tag {
    font-size: 0.8rem;
    padding: 6px 18px;
    margin-bottom: 16px;
  }

  .hero-buttons .btn-solid-light {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .main-nav {
    padding: 8px 12px;
  }

  .logo-img {
    height: 35px;
  }

  .hero-bg {
    height: calc(100vh - 70px);
    min-height: 400px;
  }

  .hero-flex {
    height: calc(100vh - 70px);
    min-height: 400px;
    padding: 0 12px;
  }

  .hero-content-inner {
    padding: 16px 12px;
  }

  .hero-content-inner h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-content-inner p {
    font-size: 0.9rem;
    padding: 0 8px;
    margin-bottom: 20px;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 5px 14px;
    margin-bottom: 12px;
  }

  .hero-buttons .btn-solid-light {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .main-nav {
    padding: 6px 10px;
  }

  .logo-img {
    height: 30px;
  }

  .hero-bg {
    height: calc(100vh - 60px);
    min-height: 350px;
  }

  .hero-flex {
    height: calc(100vh - 60px);
    min-height: 350px;
    padding: 0 10px;
  }

  .hero-content-inner {
    padding: 12px 10px;
  }

  .hero-content-inner h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero-content-inner p {
    font-size: 0.85rem;
    padding: 0 6px;
    margin-bottom: 16px;
  }

  .hero-tag {
    font-size: 0.65rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .hero-buttons .btn-solid-light {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* For landscape phones */
@media (max-width: 800px) and (orientation: landscape) {
  .main-nav {
    padding: 8px 16px;
  }

  .logo-img {
    height: 35px;
  }

  .hero-bg {
    height: calc(100vh - 70px);
    min-height: 350px;
    max-height: 500px;
  }

  .hero-flex {
    height: calc(100vh - 70px);
    min-height: 350px;
    max-height: 500px;
    padding: 0 20px;
  }

  .hero-content-inner {
    padding: 16px 20px;
  }

  .hero-content-inner h1 {
    font-size: 2rem;
  }

  .hero-content-inner p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}

.hero-tag {
  background: rgba(227, 142, 73, 0.9);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.hero-content-inner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.hero-content-inner p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 550px;
  margin: 0 auto 32px;
}

/* Top Bar */
.top-bar {
  background: rgba(10, 12, 21);
  backdrop-filter: blur(8px);
  color: white;
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  animation: slideDown 0.6s ease forwards;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-contact span {
  margin-right: 24px;
}

.social-links a {
  color: white;
  margin-left: 18px;
  transition: opacity 0.2s;
}

/* Sticky Navigation */
.sticky-nav-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 25, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  animation: slideDown 0.6s ease 0.2s forwards;
  animation-fill-mode: forwards;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
}

.logo-img {
  height: 55px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: 0.2s;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #e38e49;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== MOBILE NAVIGATION - FIXED ===== */
@media (max-width: 800px) {
  .main-nav {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
  }

  /* Logo on left */
  .logo {
    display: flex;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
    z-index: 1001;
  }

  .logo-img {
    height: 45px;
  }

  /* Hamburger on right */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    z-index: 1001;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
  }

  /* Hamburger lines */
  .hamburger span {
    display: block !important;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 4px;
  }

  .hamburger span:nth-child(2) {
    top: 13px;
  }

  .hamburger span:nth-child(3) {
    top: 22px;
  }

  /* Active hamburger (X shape) */
  .hamburger.active span:nth-child(1) {
    top: 13px;
    transform: rotate(135deg);
    background: #e38e49;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .hamburger.active span:nth-child(3) {
    top: 13px;
    transform: rotate(-135deg);
    background: #e38e49;
  }

  /* Navigation Links - Full screen overlay */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 75% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: rgba(10, 14, 25, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 40px 30px !important;
    margin: 0 !important;
    gap: 0 !important;
    transition: right 0.4s ease-in-out !important;
    z-index: 1000 !important;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3) !important;
    list-style: none !important;
    overflow-y: auto !important;
  }

  .nav-links.active {
    right: 0 !important;
  }

  /* Each list item - full width */
  .nav-links li {
    width: 100% !important;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered animation */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.25s;
  }

  /* Links styling */
  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 16px 0 !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-bottom: 2px solid transparent;
    text-align: left !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #e38e49 !important;
    padding-left: 12px !important;
    border-bottom-color: #e38e49;
  }

  /* Overlay when menu is open */
  body.menu-open {
    overflow: hidden !important;
  }

  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Pillars Section */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 70px 0 60px;
  justify-content: space-between;
}

.pillar-card {
  flex: 1;
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
  text-align: left;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
}

.pillar-card i {
  font-size: 2.4rem;
  color: #e38e49;
  margin-bottom: 18px;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 50px 0 24px 0;
  display: inline-block;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: #f8fafc;
  border-radius: 24px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eef2f8;
}

.service-card i {
  font-size: 2.4rem;
  color: #0a0c15;
  margin-bottom: 20px;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.08);
}

/* Featured Projects */
.featured-project {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #eef2fa;
  margin: 40px 0;
  transition: all 0.3s;
}

.featured-project:hover {
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
}

.project-image {
  flex: 1;
  min-height: 320px;
  overflow: hidden;
  width: 100%;
  background: #f0ede7;
}

.project-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.featured-project:hover .project-img {
  transform: scale(1.03);
}

.project-info {
  flex: 1.2;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
}

.project-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.project-info p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

/* Last Feed / CTA Section */
.last-feed {
  background: #0a0c15;
  border-radius: 36px;
  padding: 48px 32px;
  text-align: center;
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.last-feed h3 {
  color: white;
  font-size: 1.8rem;
}

.last-feed p {
  color: #e0e0e0;
  max-width: 500px;
}

.cta-button {
  background: #e38e49;
  padding: 14px 36px;
  border-radius: 40px;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #c17b2e;
  transform: translateY(-3px);
}

/* About Section */
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  margin: 80px 0;
}

.about-content {
  flex: 1;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.about-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e38e49;
  display: block;
}

.about-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Instagram Feed */
.insta-feed {
  background: #f5f7fb;
  border-radius: 36px;
  padding: 40px;
  text-align: center;
  margin: 50px 0;
}

.insta-feed h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.insta-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}

.insta-block {
  width: 80px;
  height: 80px;
  background: #cddae9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.insta-block a i {
  color: #0a0c15;
  font-size: 2rem;
}

.insta-block:hover {
  background: #e38e49;
  transform: rotate(3deg) scale(1.05);
}

.insta-block:hover a i {
  color: white;
}

/* Footer */
footer {
  background: #0a0c15;
  color: #cbd5e1;
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f2a3a;
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.footer-nav a {
  color: #e2e8f0;
  text-decoration: none;
  margin-right: 32px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #e38e49;
}

.copy {
  text-align: center;
  font-size: 0.85rem;
}

/* Logo in footer */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

/* Responsive - Center on mobile */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .footer-nav a {
    margin-right: 0;
  }

  .footer-logo {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 32px 0 20px;
  }

  .footer-links {
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer-nav {
    gap: 12px 20px;
  }

  .footer-nav a {
    font-size: 0.9rem;
  }

  .footer-logo span {
    font-size: 1.1rem;
  }
}

/* Buttons */
.btn-outline {
  border: 1px solid #e38e49;
  background: white;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  color: #e38e49;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: #e38e49;
  color: white;
}

.btn-solid-light {
  background: #e38e49;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  color: white;
  display: inline-block;
  transition: 0.2s;
  text-decoration: none;
}

.btn-solid-light:hover {
  background: #c17b2e;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 800px) {
  .hero-content-inner h1 {
    font-size: 2.2rem;
  }

  .pillars {
    flex-direction: column;
  }

  .project-info {
    padding: 30px 24px;
    width: 100%;
  }

  .project-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    max-height: 280px;
    object-fit: cover;
  }

  .featured-project {
    flex-direction: column;
    gap: 0;
    margin: 30px 0;
    border-radius: 24px;
  }

  .project-image {
    width: 100%;
    min-height: 250px;
    max-height: 280px;
    flex: none;
  }


  .about-wrapper {
    flex-direction: column;
  }

  .last-feed {
    margin: 60px 0;
    padding: 40px 24px;
  }

  .logo-img {
    height: 50px;
  }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.page-header {
  padding: 80px 0 40px;
  background: #f5f7fb;
  position: relative;
  overflow: hidden;
}

/* Animated gradient background for page-header */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(227, 142, 73, 0.03),
      transparent);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

.breadcrumb {
  font-size: 0.85rem;
  color: #9a8e7c;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: breadcrumbFadeIn 0.6s ease forwards;
}

@keyframes breadcrumbFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb a {
  text-decoration: none;
  color: #6a5e4a;
  transition: all 0.3s ease;
  position: relative;
}

.breadcrumb a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #e38e49;
  transition: width 0.3s ease;
}

.breadcrumb a:hover {
  color: #e38e49;
}

.breadcrumb a:hover::after {
  width: 100%;
}

.about-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #14141c;
  animation: titleReveal 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  transform-origin: left;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-lead {
  font-size: 1.3rem;
  color: #4a4a5a;
  max-width: 720px;
  border-left: 3px solid #e38e49;
  padding-left: 28px;
  margin-bottom: 40px;
  opacity: 0;
  animation: leadSlideIn 0.7s ease 0.2s forwards;
}

@keyframes leadSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Story grid */
.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
  margin: 60px 0 80px;
}

.story-text {
  flex: 1.2;
}

.story-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.story-text h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #e38e49;
  transition: width 0.6s ease;
}

.story-text.fade-up.visible h3::after {
  width: 60px;
}

.story-text p {
  margin-bottom: 20px;
  color: #3c3c48;
  transition: transform 0.3s ease, color 0.3s ease;
}

.story-text p:hover {
  transform: translateX(5px);
  color: #e38e49;
}

.story-visual {
  flex: 1;
  background: #e8e2d6;
  border-radius: 32px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transform: scale(0.98);
}

.story-visual.visible {
  animation: visualReveal 0.8s ease forwards;
}

@keyframes visualReveal {
  0% {
    opacity: 0;
    transform: scale(0.95) translateX(30px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.story-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.15);
}

/* Add staggered animation for story paragraphs */
.story-text p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.story-text.visible p:nth-child(1) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.story-text.visible p:nth-child(2) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.story-text.visible p:nth-child(3) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

/* Section title animation */
.section-title {
  position: relative;
  overflow: hidden;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e38e49, transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.section-title.visible::before {
  transform: translateX(0);
}

/* Subtle parallax effect on scroll for story-visual */
.story-visual {
  transition: transform 0.4s ease-out;
}

@media (prefers-reduced-motion: no-preference) {
  .story-visual {
    transition: transform 0.4s ease-out;
  }
}

@media (max-width: 900px) {
  .about-title {
    font-size: 2.5rem;
  }

  .about-lead {
    font-size: 1.1rem;
  }

  @keyframes titleReveal {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .container {
    padding: 0 24px;
  }
}

@media (max-width: 760px) {
  .story-grid {
    flex-direction: column;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-lead {
    font-size: 1rem;
    padding-left: 20px;
  }

  .story-text h3::after {
    bottom: -4px;
    height: 2px;
  }

  .story-visual {
    min-height: 280px;
  }
}

/* Projects Grid */
.projects-grid-section {
  padding: 60px 0 80px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 40px;
}

.project-card {
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #f0efea;
  opacity: 0;
  transform: translateY(30px);
}

.project-card.visible {
  animation: cardReveal 0.6s ease forwards;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.15);
  border-color: #e6dfd3;
}

.project-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.project-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e38e4969;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  background: #e38e49;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  transform: translateY(20px);
  transition: transform 0.3s ease, background 0.2s;
}

.project-card:hover .project-link {
  transform: translateY(0);
}

.project-link:hover {
  background: #e38e49;
  color: #1e1e28;
}

.project-info {
  padding: 28px 24px 32px;
}

.project-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e38e49;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-info p {
  color: #5e5e6e;
  margin-bottom: 16px;
  line-height: 1.5;
}

.project-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: #8a8a9a;
  border-top: 1px solid #f0ede7;
  padding-top: 16px;
  margin-top: 8px;
}

.project-meta i {
  margin-right: 6px;
  color: #e38e49;
}

/* Empty state */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #8a8a9a;
  font-size: 1.1rem;
}

.project-location {
  font-size: 1.1rem;
  color: #e38e49;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Image */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* Hero Section: Image Left + Stats Box Right - Centered */
.hero-stats-section {
  margin: 40px auto 60px;
  width: 100%;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

/* Image Wrapper Styles */
.hero-img-wrapper {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #e8e2d6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats Box Styles */
.stats-box {
  background: linear-gradient(135deg, #f5f5f5 0%, #ededed 100%);
  border-radius: 32px;
  padding: 40px 32px;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.stats-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
  color: black;
}

.stats-box h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #e38e49;
}

/* Stat Items */
.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(207, 207, 207, 0.698);
  width: 100%;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e38e49;
}

.stat-value.large {
  font-size: 1.8rem;
}

/* Total Stats (highlighted) */
.total-stat {
  margin-top: 16px;
  padding: 16px 12px;
  border-top: 2px solid #e38e49;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: rgba(227, 142, 73, 0.1);
  border-radius: 12px;
  width: 100%;
}

.total-stat .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 1;
}

.total-stat .stat-value {
  font-size: 1.6rem;
  font-weight: 800;
}

/* Stats Note */
.stats-note {
  margin-top: 24px;
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  width: 100%;
}

.stats-note i {
  margin-right: 6px;
  color: #e38e49;
}

/* Animation Classes */
.fade-right {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible,
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Make sure body and html take full width */
html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Ensure main content is full width */
main {
  width: 100%;
  overflow-x: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }

  .hero-img-wrapper {
    min-height: 300px;
  }

  .stats-box {
    padding: 30px 24px;
    min-height: auto;
  }

  .stats-box h3 {
    font-size: 1.3rem;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .stat-value.large {
    font-size: 1.5rem;
  }

  .total-stat .stat-value {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-stats-grid {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-stats-section {
    margin: 30px auto 40px;
  }

  .hero-stats-grid {
    gap: 20px;
  }

  .hero-img-wrapper {
    min-height: 250px;
    border-radius: 24px;
  }

  .stats-box {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .stats-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .stat-item {
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 8px;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-value.large {
    font-size: 1.2rem;
  }

  .total-stat {
    margin-top: 12px;
    padding: 12px 10px;
  }

  .total-stat .stat-label {
    font-size: 0.9rem;
  }

  .total-stat .stat-value {
    font-size: 1.1rem;
  }

  .stats-note {
    font-size: 0.7rem;
    margin-top: 16px;
    padding: 8px 12px;
  }
}

/* For very large screens, keep centered */
@media (min-width: 1400px) {
  .hero-stats-grid {
    max-width: 1280px;
    margin: 0 auto;
  }
}

/* Apartment Types Section */
.apartment-types {
  padding: 0px 0;
  border-radius: 48px;
  margin: 40px 0;
}

.section-title-about {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: left;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  display: block;
}

.section-subtitle {
  text-align: center;
  color: #5e6b6b;
  max-width: 600px;
  margin: 0 auto 48px;
}

.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.apartment-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid #efefef;
}

.apartment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
}

.apartment-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.apartment-info {
  padding: 28px;
}

.apartment-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e38e49;
  font-weight: 600;
  margin-bottom: 10px;
}

.apartment-info h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.apartment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #5e5e6e;
}

.feature i {
  color: #e38e49;
  width: 18px;
}

.feature::before {
  content: "•";
  margin-right: 0.35em;
  color: #e38e49;
}

.apartment-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e2f2a;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.btn-outline-small {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  border: 1px solid #e38e49;
  border-radius: 40px;
  color: #e38e49;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-outline-small:hover {
  background: #e38e49;
  color: white;
}

.apartment-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 0;
  background: #f8f9fc;
}

/* Inner content still centered & readable */
.apartment-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0 80px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  color: #1e1e2a;
}

.section-subtitle {
  text-align: center;
  color: #5e6b6b;
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Gallery Item - Make all items same size */
.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #f0ede7;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 30px 20px 20px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay span {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  letter-spacing: 0.3px;
}

.gallery-overlay span::before {
  content: '🔍 ';
  font-size: 1rem;
}

/* Fade Up Animation */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* For tablets - 2 columns */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* For mobile - 2 columns */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 0 60px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-item {
    border-radius: 18px;
    aspect-ratio: 1/1;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
    padding: 0 16px;
  }

  .gallery-overlay {
    padding: 20px 16px 16px;
  }

  .gallery-overlay span {
    font-size: 0.8rem;
  }
}

/* For very small mobile */
@media (max-width: 480px) {
  .gallery-section {
    padding: 30px 0 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-item {
    border-radius: 14px;
    aspect-ratio: 1/1;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .gallery-overlay {
    padding: 14px 12px 12px;
  }

  .gallery-overlay span {
    font-size: 0.7rem;
  }
}

/* Facilities Wrapper - Light Grey Background */
.facilities-wrapper {
  background: #f5f5f5;
  padding: 60px 0;
  margin: 40px 0;
  width: 100%;
}

/* Facilities Section - White background inside */
.facilities-section {
  padding: 10px 0;
  border-radius: 48px;
  margin: 0;
  width: 100%;
  position: relative;
}

/* Make sure the container inside doesn't override backgrounds */
.facilities-section .container {
  background: transparent;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Facilities Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Facility Card */
.facility-card {
  background: white;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid #efefef;
  position: relative;
  overflow: hidden;
}

/* Decorative gradient overlay on hover */
.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e38e49, #d4af37, #e38e49);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.facility-card:hover::before {
  opacity: 1;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
  border-color: #e38e49;
}

.facility-icon {
  font-size: 3rem;
  color: #e38e49;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease, color 0.3s ease;
}

.facility-card:hover .facility-icon {
  transform: scale(1.1) rotate(-5deg);
  color: #c5763a;
}

.facility-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e1e2a;
  transition: color 0.3s ease;
}

.facility-card:hover h4 {
  color: #e38e49;
}

.facility-card p {
  color: #5e5e6e;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Responsive - Tablets */
@media (max-width: 992px) {
  .facilities-wrapper {
    padding: 40px 0;
    margin: 30px 0;
  }

  .facilities-section {
    padding: 40px 0;
    border-radius: 32px;
  }

  .facilities-section .container {
    padding: 0 24px;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .facility-card {
    padding: 28px 24px;
  }

  .facility-icon {
    font-size: 2.6rem;
  }

  .facility-card h4 {
    font-size: 1.2rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .facilities-wrapper {
    padding: 30px 0;
    margin: 20px 0;
  }

  .facilities-section {
    padding: 30px 0;
    border-radius: 28px;
  }

  .facilities-section .container {
    padding: 0 20px;
  }

  .facilities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .facility-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .facility-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .facility-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .facility-card p {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
    padding: 0 16px;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
  .facilities-wrapper {
    padding: 20px 0;
    margin: 15px 0;
  }

  .facilities-section {
    padding: 20px 0;
    border-radius: 20px;
  }

  .facilities-section .container {
    padding: 0 12px;
  }

  .facilities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .facility-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .facility-card::before {
    height: 3px;
  }

  .facility-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .facility-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .facility-card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 24px;
    padding: 0 12px;
  }
}

/* Staggered animation delays */
.facility-card:nth-child(1) {
  transition-delay: 0.05s;
}

.facility-card:nth-child(2) {
  transition-delay: 0.1s;
}

.facility-card:nth-child(3) {
  transition-delay: 0.15s;
}

.facility-card:nth-child(4) {
  transition-delay: 0.2s;
}

.facility-card:nth-child(5) {
  transition-delay: 0.25s;
}

.facility-card:nth-child(6) {
  transition-delay: 0.3s;
}

.facility-card:nth-child(7) {
  transition-delay: 0.35s;
}

.facility-card:nth-child(8) {
  transition-delay: 0.4s;
}

/* Fade Up Animation - Make visible by default */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Contact Section */
.contact-section {
  padding: 60px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Contact Cards */
.contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 28px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #efefef;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.12);
  border-color: #e38e49;
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(227, 142, 73, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #e38e49;
  transition: all 0.3s ease;
}

.contact-card:hover .icon {
  background: #e38e49;
  color: white;
  transform: scale(1.05) rotate(-5deg);
}

.contact-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e1e2a;
}

.contact-card p {
  color: #5e5e6e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 4px;
}

.contact-card a {
  color: #5e5e6e;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.contact-card a:hover {
  color: #e38e49;
}

.contact-card .sub-text {
  font-size: 0.8rem;
  color: #8a8a9a;
  margin-top: 4px;
}

/* Opening Hours Card - Full width on its own row */
.hours-card {
  grid-column: 1 / -1;
  padding: 35px 40px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  background: #f8f8f8;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hours-item:hover {
  background: rgba(227, 142, 73, 0.08);
  transform: scale(1.02);
}

.hours-item .day {
  font-weight: 600;
  color: #1e1e2a;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.hours-item .time {
  color: #5e5e6e;
  font-size: 0.85rem;
}

.hours-item.closed .time {
  color: #e74c3c;
  font-weight: 600;
}

.hours-item .day-icon {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #e38e49;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hours-card {
    grid-column: 1 / -1;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hours-card {
    padding: 28px 20px;
  }

  .hours-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .page-title {
    font-size: 2rem;
  }

  .contact-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .contact-card .icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .hours-card {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .hours-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hours-item {
    padding: 12px 8px;
  }

  .hours-item .day {
    font-size: 0.8rem;
  }

  .hours-item .time {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* Back Button */
.back-button {
  margin: 40px 0 20px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #ddd;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  color: #1e1e2a;
  font-weight: 500;
  transition: all 0.3s;
}

.back-btn:hover {
  border-color: #e38e49;
  color: #e38e49;
  transform: translateX(-5px);
}