  /* ----- CSS Reset & Variables ----- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary-deep: #0A0F1F;
    --primary-blue: #1E3A5F;
    --secondary-blue: #3B82F6;
    --accent-gold: #f74242;
    --accent-amber: #F97316;
    --accent-coral: #FF6B6B;
    --accent-teal: #10B981;
    --accent-purple: #8B5CF6;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-gray: #E2E8F0;
    --medium-gray: #94A3B8;
    --dark-text: #1E293B;
    
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #FD3D50 0%, #D90000 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-dark: linear-gradient(135deg, #0F1A2C 0%, #1B3A5C 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    --shadow-gold: 0 0 40px rgba(245, 158, 11, 0.3);
    
    --border-radius-sm: 12px;
    --border-radius-md: 15px;
    --border-radius-lg: 18px;
    --border-radius-xl: 24px;
    
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: default;
  }

  /* Custom Cursor */
  .custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }

  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.05s ease;
  }

  h1, h2, h3, .luxury-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

  /* ----- Particle Background ----- */
  .particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: particleFloat 15s infinite;
    opacity: 0.15;
  }

  @keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-100px) translateX(50px) rotate(90deg); }
    50% { transform: translateY(-50px) translateX(-30px) rotate(180deg); }
    75% { transform: translateY(-150px) translateX(20px) rotate(270deg); }
  }

  /* ----- Shiny Buttons ----- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .btn:hover::before {
    width: 400px;
    height: 400px;
  }

  .btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    animation: shimmer 2s infinite;
  }

  .btn-primary:hover {
    transform: translateY(-4px) scale(1);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.6);
  }

  @keyframes shimmer {
    0% { box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(245, 158, 11, 0.7), 0 0 60px rgba(245, 158, 11, 0.3); }
    100% { box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4); }
  }

  .btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: white;
  }

  .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
  }

  .btn-outline-light:hover {
    background: white;
    color: var(--primary-deep);
  }

  .btn-outline {
    border: 2px solid var(--light-gray);
    background: white;
    color: var(--dark-text);
     margin-left: .5rem;
  }

  .btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
  }

  .btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
    cursor: pointer;
  }

  .btn-icon:hover {
    transform: scale(1.15) rotate(15deg);
    background: var(--accent-gold);
  }

  /* ----- Vibrant Header ----- */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: .5rem 0;
    background: transparent;
  }

  header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: .5rem 0;
    color:rgba(10, 15, 31, 0.98);
  }

  header.scrolled .main-nav a {
    color: var(--primary-deep);
  }

  header.scrolled .btn-glass {
    background: #d90000;
    border: 1px solid #720000;
    color: white;
  }

  header.scrolled .hamburger span {
    background: var(--primary-deep);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    position: relative;
  }

  .logo img {
    height: 100px;
    width: 100%;
    object-fit: cover;
  }

  .main-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }

  .main-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
  }

  .main-nav a:hover::after {
    width: 100%;
  }

  .main-nav a:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
  }

  .main-nav .btn-glass:hover::after {
    width: 0%;
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 30px;
    height: 2px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 31, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: 'Playfair Display', serif;
  }

  .mobile-menu a:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
  }

  /* ----- Hero Section ----- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-40px) rotate(10deg) scale(1.05); }
  }

  .hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
  }

  @keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
  }

  .hero-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    background: url('../images/banner.jpg') center/cover no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 24px 80px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.4);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
    50% { box-shadow: 0 0 0 20px rgba(245,158,11,0); }
  }

  .hero-badge i {
    animation: spin 3s linear infinite;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    max-width: 900px;
    font-weight: 800;
    text-shadow: 0 10px 40px rgba(0,0,0,0.3);
  }

  .hero h1 .gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
  }

  @keyframes gradientShift {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
  }

  .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.8;
  }

  /* Stats Counter */
  .hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 30px rgba(245,158,11,0.5);
  }

  .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 4px;
  }

  /* Glass Filter Bar */
  .filter-bar {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(40px) saturate(180%);
    border-radius: 30px;
    padding: 12px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    max-width: 1100px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  }

  .tab-buttons {
    display: flex;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    padding: 6px;
  }

  .tab-btn {
    padding: 16px 32px;
    border-radius: 60px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
  }

  .tab-btn.active {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 8px 24px rgba(245,158,11,0.4);
    transform: scale(1.05);
  }

  .filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .filter-select {
    padding: 16px 28px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
  }

  .filter-select:hover {
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.15);
  }

  .filter-select option {
    background: var(--primary-deep);
    color: white;
  }

  .search-btn {
    background: var(--gradient-gold);
    border: none;
    color: white;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(245,158,11,0.4);
  }

  .search-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 40px rgba(245,158,11,0.6);
  }

  /* ----- Section Styles ----- */
  section {
    padding: 120px 0;
    position: relative;
  }

  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-blue);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
  }

  .section-badge i {
    color: var(--accent-gold);
  }

  .section-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: var(--primary-deep);
    font-weight: 800;
    line-height: 1.2;
  }

  .gradient-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 20px auto;
  }

  .section-subtitle {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

  /* ----- Property Cards with 3D Tilt Effect ----- */
  .property-tabs-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
  }

  .property-tabs-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
    border-radius: 50%;
  }

  .category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
  }

  .cat-tab {
    padding: 15px 30px;
    border-radius: 30px;
    background: white;
    border: 2px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    color: var(--dark-text);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
  }

  .cat-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    transition: left 0.5s ease;
    z-index: -1;
  }

  .cat-tab.active {
    background: var(--gradient-3);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(79,172,254,0.3);
    transform: translateY(-2px);
  }

  .cat-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }

  .property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    perspective: 1000px;
  }

  .property-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  }

  .property-card:hover {
    transform: perspective(1000px) rotateX(-2deg) rotateY(2deg) translateY(-16px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 40px rgba(245,158,11,0.1);
    border-color: var(--accent-gold);
  }

  .card-img {
    height: 280px;
    position: relative;
    overflow: hidden;
  }

  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .property-card:hover .card-img img {
    transform: scale(1.15);
  }

  .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
  }

  .property-card:hover .card-overlay {
    opacity: 1;
  }

  .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(245,158,11,0.4);
    animation: shimmer 2s infinite;
  }

  .card-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
  }

  .property-card:hover .card-actions {
    opacity: 1;
    transform: translateX(0);
  }

  .card-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: var(--transition-bounce);
    backdrop-filter: blur(10px);
  }

  .card-action-btn:hover {
    background: var(--accent-coral);
    color: white;
    transform: scale(1.2);
  }

  .card-details {
    padding: 28px;
    position: relative;
    background: white;
  }

  .card-details h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-deep);
  }

  .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 18px 0;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--light-gray);
  }

  .meta i {
    color: var(--accent-gold);
    margin-right: 4px;
  }

  .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-deep);
    font-family: 'Space Grotesk', sans-serif;
  }

  .price span {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
  }

  /* Floating Action Button */
  .floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(245,158,11,0.5);
    transition: var(--transition-bounce);
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  .floating-cta:hover {
    transform: scale(1.2);
    animation: none;
  }

  /* ----- Carousel with Swiper ----- */
  .carousel-section {
    background: var(--primary-deep);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .carousel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 60%);
    border-radius: 50%;
  }

  .swiper {
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius-lg);
  }

  .home-swiper-slide {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding: 80px;
    position: relative;
    overflow: hidden;
  }

  .home-swiper-slide::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    border-radius: 50%;
  }

  .slide-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
  }

  .slide-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
  }

  .slide-content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  /* ----- Why Us with Icon Animations ----- */
  .why-us {
    position: relative;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    margin-top: 60px;
  }

  .feature-item {
    text-align: center;
    padding: 48px 36px;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
  }

  .feature-item:hover::before {
    transform: scaleX(1);
  }

  .feature-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
  }

  .feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-3);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    color: white;
    transform: rotate(-5deg);
    transition: var(--transition-bounce);
    box-shadow: 0 12px 32px rgba(79,172,254,0.3);
  }

  .feature-item:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 16px 48px rgba(79,172,254,0.5);
  }

  .feature-item:nth-child(2) .feature-icon {
    background: var(--gradient-2);
    box-shadow: 0 12px 32px rgba(245,87,108,0.3);
  }

  .feature-item:nth-child(3) .feature-icon {
    background: var(--gradient-1);
    box-shadow: 0 12px 32px rgba(102,126,234,0.3);
  }

  .feature-item:nth-child(4) .feature-icon {
    background: var(--gradient-gold);
    box-shadow: 0 12px 32px rgba(245,158,11,0.3);
  }

  /* ----- Testimonials with Glass Effect ----- */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
  }

  .testimonial-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
  }

  .testimonial-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: var(--light-gray);
    line-height: 1;
    z-index: 0;
    opacity: 0.5;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .stars {
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-size: 1.1rem;
  }

  /* ----- Newsletter Section ----- */
  .newsletter-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .newsletter-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

  .newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-form-large {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 60px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
  }

  .newsletter-form-large input {
    flex: 1;
    padding: 18px 28px;
    border-radius: 60px;
    border: none;
    background: rgba(255,255,255,0.95);
    font-size: 1rem;
    outline: none;
  }

  /* ----- Page Hero ----- */
  .page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
    margin-top: 0px;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
  }

  .page-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(5deg) scale(1.05); }
  }

  .hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
  }

  .breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
  }

  .page-hero h1 .gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }

  .page-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.8;
  }

  /* ----- Story Section ----- */
    .story-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .story-image-wrapper {
      position: relative;
    }

    .story-image {
      width: 100%;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-xl);
      position: relative;
      z-index: 1;
    }

    .story-image-accent {
      position: absolute;
      top: -20px;
      right: -20px;
      width: 200px;
      height: 200px;
      background: var(--gradient-gold);
      border-radius: var(--border-radius-md);
      z-index: 0;
      opacity: 0.3;
    }

    .story-image-dots {
      position: absolute;
      bottom: -30px;
      left: -30px;
      width: 150px;
      height: 150px;
      background-image: radial-gradient(var(--accent-gold) 2px, transparent 2px);
      background-size: 15px 15px;
      z-index: 0;
    }

    .story-text h3 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: var(--primary-deep);
    }

    .story-text .highlight {
      color: var(--accent-gold);
    }

    .story-text p {
      color: var(--medium-gray);
      margin-bottom: 24px;
      line-height: 1.8;
      font-size: 1.05rem;
    }

    .story-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 32px;
    }

    .story-stat {
      text-align: center;
      padding: 24px;
      background: var(--off-white);
      border-radius: var(--border-radius-md);
      transition: var(--transition-smooth);
    }

    .story-stat:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .story-stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent-gold);
      font-family: 'Space Grotesk', sans-serif;
    }

    .story-stat-label {
      font-size: 0.9rem;
      color: var(--medium-gray);
      margin-top: 8px;
    }

    /* ----- Mission & Vision ----- */
    .mission-section {
      background: var(--off-white);
      position: relative;
      overflow: hidden;
    }

    .mission-section::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .mission-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .mission-card {
      background: white;
      padding: 48px 40px;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-md);
      transition: var(--transition-bounce);
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
    }

    .mission-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-gold);
      transform: scaleX(0);
      transition: transform 0.5s ease;
    }

    .mission-card:hover::before {
      transform: scaleX(1);
    }

    .mission-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-xl);
      border-color: var(--accent-gold);
    }

    .mission-icon {
      width: 80px;
      height: 80px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
      margin-bottom: 28px;
      transform: rotate(-5deg);
      transition: var(--transition-bounce);
    }

    .mission-card:hover .mission-icon {
      transform: rotate(0deg) scale(1.1);
    }

    .mission-icon.vision {
      background: var(--gradient-purple);
    }

    .mission-icon.mission {
      background: var(--gradient-blue);
    }

    .mission-icon.values {
      background: var(--gradient-gold);
    }

    .mission-card h3 {
      font-size: 1.8rem;
      margin-bottom: 16px;
      color: var(--primary-deep);
    }

    .mission-card p {
      color: var(--medium-gray);
      line-height: 1.8;
    }

    /* ----- Team Section ----- */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 36px;
    }

    .team-card {
      text-align: center;
      transition: var(--transition-bounce);
    }

    .team-card:hover {
      transform: translateY(-12px);
    }

    .team-avatar {
      width: 220px;
      height: 240px;
      margin: 0 auto 24px;
      position: relative;
      overflow: hidden;
      border: 4px solid transparent;
      transition: var(--transition-smooth);
    }

    .team-card:hover .team-avatar {
      border-color: var(--accent-gold);
      box-shadow: var(--shadow-gold);
    }

    .team-avatar img {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .team-card h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .team-role {
      color: var(--accent-gold);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .team-bio {
      color: var(--medium-gray);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .team-social {
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    .team-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark-text);
      transition: var(--transition-smooth);
      text-decoration: none;
    }

    .team-social a:hover {
      background: var(--accent-gold);
      color: white;
      transform: translateY(-4px);
    }

    /* ----- Timeline ----- */
    .timeline {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 100%;
      background: var(--light-gray);
    }

    .timeline-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px;
      position: relative;
    }

    .timeline-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .timeline-content {
      width: 45%;
      background: white;
      padding: 32px;
      border-radius: var(--border-radius-md);
      box-shadow: var(--shadow-md);
      transition: var(--transition-smooth);
      border: 1px solid transparent;
    }

    .timeline-content:hover {
      border-color: var(--accent-gold);
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .timeline-year {
      display: inline-block;
      background: var(--gradient-gold);
      color: white;
      padding: 6px 20px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    .timeline-dot {
      width: 20px;
      height: 20px;
      background: var(--accent-gold);
      border-radius: 50%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      border: 4px solid white;
      box-shadow: 0 0 0 4px var(--accent-gold);
    }

    .timeline-content h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem;
      margin-bottom: 8px;
    }

    .timeline-content p {
      color: var(--medium-gray);
      line-height: 1.6;
    }

  /* ----- CTA Section ----- */
  .cta-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 60%);
    border-radius: 50%;
  }

  .cta-content {
    position: relative;
    z-index: 1;
  }

  .cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
  }

  .back-link:hover {
    color: var(--accent-gold);
  }

  /* ----- Footer ----- */
  footer {
    background: var(--primary-deep);
    color: rgba(255,255,255,0.7);
    padding: 100px 0 40px;
    position: relative;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
  }

  .footer-brand h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
  }

  .social-icons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 1.2rem;
  }

  .social-icon:hover {
    background: var(--gradient-gold);
    transform: translateY(-6px) rotate(10deg);
    box-shadow: 0 12px 32px rgba(245,158,11,0.4);
    border-color: transparent;
  }

  /* Toast Notification */
  .toast {
    position: fixed;
    bottom: 120px;
    right: 40px;
    background: white;
    padding: 20px 32px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .toast.show {
    transform: translateX(0);
  }

  @media (max-width: 992px) {
    .container {
      padding: 0 2rem;
    }

    .hero-content {
      padding: 90px 24px;
    }

    .main-nav {
      display: none;
    }
    
    .hamburger {
      display: flex;
    }

    .filter-bar {
      flex-direction: column;
      border-radius: 20px;
    }

    .filter-group {
      margin-left: 0;
      flex-direction: column;
      width: 100%;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .swiper {
      height: 400px;
    }
    
    .swiper-slide {
      padding: 40px;
    }
    
    .slide-content h3 {
      font-size: 2rem;
    }

    .hero-stats {
      gap: 24px;
    }

    .page-hero-content {
      padding: 100px 20px;
    }
    .story-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .mission-cards {
      grid-template-columns: 1fr;
    }

    .timeline::before {
      left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
      flex-direction: column;
      align-items: flex-start;
    }

    .timeline-content {
      width: calc(100% - 60px);
      margin-left: 60px;
    }

    .timeline-dot {
      left: 20px;
    }

    .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }

  @media (max-width: 576px) {
    .container {
      padding: 0 20px;
    }

    .hero-content {
      padding: 70px 20px;
    }

    .tab-buttons {
      gap: 0;
    }

    .logo {
      font-size: 1.8rem;
    }

    .hero h1 {
      font-size: 2.5rem;
    }

    .property-grid {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
    }

    .newsletter-form-large {
      flex-direction: column;
      border-radius: 20px;
      padding: 20px 10px;
    }

    .floating-cta {
      bottom: 20px;
      right: 20px;
      width: 56px;
      height: 56px;
    }

    .page-hero, .page-hero-content {
      padding: 70px 20px;
    }

    .page-hero h1 {
      font-size: 2.2rem;
    }

    .story-stats {
      grid-template-columns: 1fr;
    }


    .cta-content h2 {
      font-size: 2rem;
    }

    .btn-outline {
      margin-left: 0;
      margin-top: 12px;
    }
  }