* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1e2a32;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    /* Logo splash animation */
    .logo-splash {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      opacity: 1;
      pointer-events: none;
    }

    .logo-splash.fade-out {
      opacity: 0;
    }

    .splash-logo-img {
      max-width: 320px;
      width: 40%;
      height: auto;
      filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
      animation: gentleScale 1.2s ease-out;
      border-radius: 12px;
    }

    @keyframes gentleScale {
      0% { transform: scale(0.92); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
    }

    /* main content initially hidden? but we show after splash hidden */
    .main-content {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .main-content.visible {
      opacity: 1;
    }

    /* Typography & utility */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Header / Nav */
    header {
      background: #ffffff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0,0,0,0.03);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(0px);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 18px 0;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 60px;
      height: 60px;
      background: #f7efe5;
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
    }

    .logo-icon:hover {
      transform: scale(1.05);
    }

    .logo-icon img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .brand-text {
      font-weight: 700;
      font-size: 1.7rem;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #2F5D3A, #8B5A2B);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      text-transform: capitalize;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #2c3e2f;
      transition: all 0.3s ease;
      font-size: 1rem;
      padding: 8px 12px;
      border-radius: 8px;
      position: relative;
    }

    .nav-links a:hover {
      color: #b4622a;
      background: rgba(180, 98, 42, 0.05);
      transform: translateY(-1px);
    }

    .nav-links a.active {
      color: #b4622a;
      background: rgba(180, 98, 42, 0.1);
      font-weight: 600;
    }

    /* Enhanced Typography */
    h1, h2, h3 {
      font-weight: 700;
      line-height: 1.2;
    }

    /* Enhanced Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes countUp {
      0% {
        opacity: 0;
        transform: scale(0.8);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease-out;
    }

    .count-animation {
      animation: countUp 1s ease-out;
    }

    /* Enhanced Hero Section */
    .hero-section {
      background: linear-gradient(135deg, #2F5D3A 0%, #8B5A2B 100%);
      color: white;
      border-bottom: none;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
      margin-bottom: 0;
    }

    .hero-pattern {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0.1;
      background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
      z-index: 1;
    }

    .hero-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 40px;
      opacity: 0.9;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Statistics Section with Elegant Glassmorphism */
    .stats-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 100px 0;
      border-bottom: none;
      position: relative;
      z-index: 10;
      margin-top: -1px;
      overflow: hidden;
    }

    .stats-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%232F5D3A" fill-opacity="0.02"%3E%3Cpath d="M30 30c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z"/%3E%3C/g%3E%3C/svg%3E');
      opacity: 0.8;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .stat-item {
      padding: 40px 30px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(47, 93, 58, 0.15);
      box-shadow: 
        0 10px 40px rgba(47, 93, 58, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
      pointer-events: none;
    }

    .stat-item::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(47,93,58,0.03) 0%, transparent 70%);
      pointer-events: none;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      50% { transform: translate(-10px, -10px) rotate(180deg); }
    }

    .stat-item:hover {
      transform: translateY(-8px) scale(1.02);
      background: rgba(255, 255, 255, 0.85);
      border-color: rgba(47, 93, 58, 0.25);
      box-shadow: 
        0 20px 60px rgba(47, 93, 58, 0.12),
        0 5px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(47, 93, 58, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .stat-number {
      font-size: 3.6rem;
      font-weight: 800;
      color: #2F5D3A;
      margin-bottom: 12px;
      display: block;
      text-shadow: 0 2px 4px rgba(47,93,58,0.1);
      position: relative;
      z-index: 2;
    }

    .stat-item:nth-child(1) .stat-number {
      color: #2F5D3A;
      text-shadow: 0 2px 4px rgba(47,93,58,0.15);
    }

    .stat-item:nth-child(2) .stat-number {
      color: #8B5A2B;
      text-shadow: 0 2px 4px rgba(139,90,43,0.15);
    }

    .stat-item:nth-child(3) .stat-number {
      color: #2F5D3A;
      text-shadow: 0 2px 4px rgba(47,93,58,0.15);
    }

    .stat-item:nth-child(4) .stat-number {
      color: #8B5A2B;
      text-shadow: 0 2px 4px rgba(139,90,43,0.15);
    }

    .stat-label {
      font-size: 1.2rem;
      color: #2c3e2f;
      margin-bottom: 8px;
      font-weight: 600;
      letter-spacing: 0.1px;
      text-shadow: 0 1px 2px rgba(255,255,255,0.5);
    }

    .stat-description {
      font-size: 0.95rem;
      color: #5a6c5d;
      line-height: 1.5;
      font-weight: 400;
    }

    /* buttons */
    .btn-primary {
      background: linear-gradient(135deg, #2F5D3A, #1f4529);
      color: white;
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(47,93,58,0.2);
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      position: relative;
      overflow: hidden;
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #1f4529, #2F5D3A);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(47,93,58,0.3);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    /* sections */
    section {
      padding: 80px 0;
      border-bottom: 1px solid #edf0ea;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 48px;
      color: #1e3a2f;
      position: relative;
    }

    .section-title:after {
      content: '';
      width: 70px;
      height: 3px;
      background: #d49c6c;
      display: block;
      margin-top: 12px;
    }

    .two-column {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
    }

    .card-story {
      flex: 1;
      background: #fefaf5;
      padding: 36px;
      border-radius: 32px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.02);
    }

    .card-story:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }

    .ceo-quote {
      font-style: italic;
      border-left: 5px solid #d49c6c;
      padding-left: 24px;
      margin: 24px 0;
      font-size: 1.1rem;
      color: #3a5a44;
    }

    /* developments grid */
    .developments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 20px;
    }

    .dev-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
      border: 1px solid #f0e8df;
    }

    .dev-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    }

    .dev-img {
      height: 200px;
      background-size: cover;
      background-position: center;
    }

    .dev-content {
      padding: 28px;
    }

    .dev-content h3 {
      font-size: 1.7rem;
      margin-bottom: 12px;
      font-weight: 600;
    }

    /* Enhanced Project Cards */
    .dev-card {
      position: relative;
      overflow: hidden;
    }

    .dev-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.6s ease;
      z-index: 1;
    }

    .dev-card:hover::before {
      left: 100%;
    }

    .dev-card .dev-img {
      position: relative;
      overflow: hidden;
    }

    .dev-card .dev-img::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .dev-card:hover .dev-img::after {
      opacity: 1;
    }

    /* Professional Footer Enhancement */
    footer {
      background: linear-gradient(135deg, #1b2c21 0%, #2F5D3A 100%);
      color: #dcd7cc;
      padding: 60px 0 30px;
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z"/%3E%3C/g%3E%3C/svg%3E');
      opacity: 0.5;
    }

    .footer-content {
      position: relative;
      z-index: 2;
    }

    /* Professional Badge Styles */
    .badge-premium {
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 2px 8px rgba(255,215,0,0.3);
    }

    .badge-commercial {
      background: linear-gradient(135deg, #8B5A2B, #A0522D);
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 2px 8px rgba(139,90,43,0.3);
    }

    .badge-sustainable {
      background: linear-gradient(135deg, #2F5D3A, #3A7A4F);
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 2px 8px rgba(47,93,58,0.3);
    }
    .contact-grid {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
    }
    .contact-info {
      flex: 1;
      background: #f9f6f0;
      border-radius: 32px;
      padding: 40px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.02);
    }
    .contact-detail-item {
      margin-bottom: 32px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 20px;
      background: white;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .contact-detail-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    }

    .contact-icon {
      font-size: 2rem;
      color: #2F5D3A;
      width: 50px;
      height: 50px;
      background: rgba(47,93,58,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* Font Awesome Icon Fixes */
    .contact-icon i {
      font-size: inherit !important;
      color: inherit !important;
      display: block !important;
      line-height: 1 !important;
    }

    /* Fallback for icons if Font Awesome doesn't load */
    .contact-icon::before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background: #2F5D3A;
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
    }

    .contact-icon:has(.fa-map-marker-alt)::before {
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%232F5D3A' d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128c-35.3 0-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64s-28.7-64-64-64z'/%3E%3C/svg%3E");
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%232F5D3A' d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128c-35.3 0-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64s-28.7-64-64-64z'/%3E%3C/svg%3E");
    }

    .contact-icon:has(.fa-user-tie)::before {
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%232F5D3A' d='M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z'/%3E%3C/svg%3E");
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%232F5D3A' d='M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z'/%3E%3C/svg%3E");
    }

    .contact-icon:has(.fa-envelope)::before {
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232F5D3A' d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L217.6 334.4c15.8 11.9 37.9 11.9 53.7 0l198.4-184c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176L0 384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 319.5c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E");
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232F5D3A' d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L217.6 334.4c15.8 11.9 37.9 11.9 53.7 0l198.4-184c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176L0 384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 319.5c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E");
    }

    .contact-icon:has(.fa-globe)::before {
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232F5D3A' d='M352 256c0 22.2-1.2 43.6-3.4 64H163.4c-2.2-20.4-3.4-41.8-3.4-64s1.2-43.6 3.4-64H348.6c2.2 20.4 3.4 41.8 3.4 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c48.1 15.9 88.9 47.8 115.9 89.6zM71.4 96C96.9 130.2 116.7 183.7 126.7 247.7H32.1C47.6 191.1 77.1 143.8 118.2 96L71.4 96zM32.1 264.3h94.6c-2.2 41.6-10.2 81.6-23.3 112H71.4c-41.1-47.8-70.6-95.1-86.1-151.6H32.1zm39.3 144h32.1c10 63.9 29.8 117.4 55.3 151.6c-48.1-15.9-88.9-47.8-115.9-89.6zM247.7 496c-26.7-20.6-49.9-69.6-60.3-142.3H308.3c-10.4 72.7-33.6 121.7-60.3 142.3zM308.3 353.7H187.3c2.2-41.6 10.2-81.6 23.3-112h74.4c13.1 30.4 21.1 70.4 23.3 112zm-74.4-144H210.6c-13.1-30.4-21.1-70.4-23.3-112h121.1c-2.2 41.6-10.2 81.6-23.3 112z'/%3E%3C/svg%3E");
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232F5D3A' d='M352 256c0 22.2-1.2 43.6-3.4 64H163.4c-2.2-20.4-3.4-41.8-3.4-64s1.2-43.6 3.4-64H348.6c2.2 20.4 3.4 41.8 3.4 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c48.1 15.9 88.9 47.8 115.9 89.6zM71.4 96C96.9 130.2 116.7 183.7 126.7 247.7H32.1C47.6 191.1 77.1 143.8 118.2 96L71.4 96zM32.1 264.3h94.6c-2.2 41.6-10.2 81.6-23.3 112H71.4c-41.1-47.8-70.6-95.1-86.1-151.6H32.1zm39.3 144h32.1c10 63.9 29.8 117.4 55.3 151.6c-48.1-15.9-88.9-47.8-115.9-89.6zM247.7 496c-26.7-20.6-49.9-69.6-60.3-142.3H308.3c-10.4 72.7-33.6 121.7-60.3 142.3zM308.3 353.7H187.3c2.2-41.6 10.2-81.6 23.3-112h74.4c13.1 30.4 21.1 70.4 23.3 112zm-74.4-144H210.6c-13.1-30.4-21.1-70.4-23.3-112h121.1c-2.2 41.6-10.2 81.6-23.3 112z'/%3E%3C/svg%3E");
    }

    /* Ensure Font Awesome icons are visible */

    .map-placeholder {
      flex: 1;
      background: linear-gradient(135deg, #e5e9e0, #d4d8ce);
      border-radius: 32px;
      min-height: 400px;
      background-image: url('https://images.unsplash.com/photo-1519904981063-b0cf448d479e?w=800&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.05);
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-placeholder > div {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      margin: 20px;
      border-radius: 24px;
      padding: 40px 32px;
      text-align: center;
      color: #1e2a32;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      max-width: 280px;
      position: relative;
      z-index: 2;
    }

    .footer-flex {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    @media (max-width: 800px) {
      .container { padding: 0 24px; }
      .nav-container { flex-direction: column; gap: 16px; }
      .nav-links { gap: 24px; flex-wrap: wrap; justify-content: center; }
      .section-title { font-size: 2rem; }
    }

    /* minor details */
    .pill-badge {
      background: #eae3d9;
      padding: 4px 14px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 12px;
    }
    .director-name {
      font-weight: 700;
      color: #2F5D3A;
    }