:root {
      --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      --dark-bg: #1a1a2e;
      --light-bg: #f8f9fa;
      --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background-color: #ffffff;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Smooth scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Hero Section */
    .hero {
      background: var(--primary-gradient);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      color: white;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
      animation: gridMove 20s linear infinite;
    }

    @keyframes gridMove {
      0% {
        transform: translate(0, 0);
      }

      100% {
        transform: translate(100px, 100px);
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .logo {
      max-width: 100%;
      width: auto;
      height: auto;
      margin: 0 auto 2rem;
      display: block;
      background: rgba(255, 255, 255, 0.95);
      padding: 1.5rem;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: translateY(-5px) scale(1.02);
    }

    @media (min-width: 768px) {
      .logo {
        max-width: 450px;
        padding: 2rem;
      }
    }

    .hero-title {
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 3px;
      margin-top: 1rem;
      opacity: 0.95;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.8);
      font-size: 2rem;
    }

    @keyframes bounce {

      0%,
      20%,
      50%,
      80%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      40% {
        transform: translateX(-50%) translateY(-10px);
      }

      60% {
        transform: translateX(-50%) translateY(-5px);
      }
    }

    /* Section Styling */
    section {
      padding: 6rem 0;
      position: relative;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--primary-gradient);
      border-radius: 2px;
    }

    .section-subtitle {
      color: #6c757d;
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }

    /* Cards */
    .feature-card {
      background: white;
      border-radius: 20px;
      padding: 3rem 2rem;
      box-shadow: var(--card-shadow);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0, 0, 0, 0.05);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: var(--primary-gradient);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--card-shadow-hover);
    }

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

    .feature-icon {
      width: 80px;
      height: 80px;
      background: var(--primary-gradient);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
      margin: 0 auto 1.5rem;
      transition: transform 0.3s ease;
    }

    /* Ensure images inside feature icons fit neatly */
    .feature-icon img {
      max-width: 70%;
      max-height: 70%;
      object-fit: contain;
      display: block;
    }

    .feature-card:hover .feature-icon {
      transform: rotate(5deg) scale(1.1);
    }

    .about-lead {
      font-size: 1.2rem;
      color: #495057;
    }

    .property-feature-icon {
      background: var(--secondary-gradient);
    }

    /* App/Property Cards */
    .showcase-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: all 0.4s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .showcase-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--card-shadow-hover);
    }

    .showcase-card-body {
      padding: 3rem;
    }

    .showcase-card h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Buttons */
    .btn-custom {
      padding: 14px 40px;
      font-weight: 600;
      border-radius: 50px;
      background: var(--primary-gradient);
      border: none;
      color: white;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    .btn-custom::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: left 0.5s ease;
    }

    .btn-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
      color: white;
    }

    .btn-custom:hover::before {
      left: 100%;
    }

    /* Contact Section */
    .contact-card {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border-radius: 24px;
      padding: 3rem;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.1);
        opacity: 0.8;
      }
    }

    .contact-card h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .contact-info {
      position: relative;
      z-index: 1;
    }

    .contact-info p {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-info a {
      color: white;
      text-decoration: none;
      border-bottom: 2px solid rgba(255, 255, 255, 0.3);
      transition: border-color 0.3s ease;
    }

    .contact-info a:hover {
      border-bottom-color: white;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
      color: rgba(255, 255, 255, 0.8);
      padding: 2rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Background Sections */
    .bg-light-gradient {
      background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

    .bg-accent {
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

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

      section {
        padding: 4rem 0;
      }

      .showcase-card-body {
        padding: 2rem;
      }

      .hero {
        min-height: 100svh;
      }
    }

    /* Animation for elements on scroll */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
