:root { --primary: #0f766e; --primary-dark: #115e59; --accent: #f59e0b; --dark: #0f172a; --light: #f8fafc; --gray: #64748b; --border: #e2e8f0; --white: #ffffff; --radius: 12px; --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05); } * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; } body { background-color: var(--light); color: var(--dark); line-height: 1.6; } a { text-decoration: none; color: inherit; } ul { list-style: none; } .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; } .header { background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; } .nav-container { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; } .logo { font-size: 1.8rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; } .logo span { color: var(--primary); } .nav-menu { display: flex; gap: 1.5rem; align-items: center; } .nav-menu > a, .nav-menu .dropdown-toggle { font-weight: 600; color: var(--gray); transition: color 0.3s; font-size: 0.95rem; } .nav-menu a:hover, .nav-menu a.active, .nav-menu .dropdown-toggle:hover { color: var(--primary); } .dropdown { position: relative; display: inline-block; } .dropdown-toggle { display: flex; align-items: center; gap: 0.4rem; cursor: pointer; } .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 240px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-radius: var(--radius); padding: 0.5rem 0; z-index: 1100; border: 1px solid var(--border); } .dropdown:hover .dropdown-menu { display: block; animation: dropdownFade 0.2s ease; } @keyframes dropdownFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .dropdown-menu a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; font-size: 0.9rem; font-weight: 600; color: var(--dark); transition: background 0.2s, color 0.2s; } .dropdown-menu a:hover { background: rgba(15, 118, 110, 0.08); color: var(--primary); } .dropdown-menu a i { width: 20px; color: var(--primary); } .highlight-nav { color: var(--accent) !important; font-weight: 700 !important; background: rgba(245, 158, 11, 0.1); padding: 0.4rem 0.8rem; border-radius: var(--radius); } .nav-actions { display: flex; gap: 1rem; align-items: center; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; font-size: 0.95rem; } .btn-primary { background: var(--primary); color: var(--white); } .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3); } .btn-outline { background: transparent; border: 2px solid var(--border); color: var(--dark); } .btn-outline:hover { border-color: var(--primary); color: var(--primary); } .btn-light { background: var(--white); color: var(--primary); } .btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; } .hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); } .hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: var(--white); padding: 5rem 1.5rem 6rem; position: relative; overflow: hidden; } .hero-content { max-width: 900px; margin: 0 auto; text-align: center; } .badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(15, 118, 110, 0.2); border: 1px solid var(--primary); color: #2dd4bf; padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; } .hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; } .hero h1 span { color: #2dd4bf; } .hero p { font-size: 1.15rem; color: #94a3b8; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; } .search-box { background: var(--white); border-radius: var(--radius); padding: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3); color: var(--dark); text-align: left; } .search-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; overflow-x: auto; } .tab-btn { background: transparent; border: none; padding: 0.75rem 1.25rem; font-weight: 600; color: var(--gray); cursor: pointer; border-radius: var(--radius); display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; transition: all 0.3s; } .tab-btn.active, .tab-btn:hover { background: rgba(15, 118, 110, 0.1); color: var(--primary); } .search-pane { display: none; } .search-pane.active { display: block; } .search-pane form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) auto; gap: 1rem; align-items: end; } .form-group { display: flex; flex-direction: column; gap: 0.5rem; } .form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray); } .form-group select, .form-group input { padding: 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; outline: none; background: var(--white); color: var(--dark); } .form-group select:focus, .form-group input:focus { border-color: var(--primary); } .btn-search { height: 46px; } .stats-section { padding: 3rem 0; background: var(--white); border-bottom: 1px solid var(--border); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; } .stat-card h3 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; } .stat-card p { color: var(--gray); font-weight: 600; } .section { padding: 5rem 0; } .section-header { text-align: center; margin-bottom: 3rem; } .section-header h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.75rem; } .section-header p { color: var(--gray); font-size: 1.05rem; } .grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; } .card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; position: relative; } .card:hover { transform: translateY(-5px); box-shadow: var(--shadow); } .card-img { height: 220px; position: relative; overflow: hidden; } .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; } .card:hover .card-img img { transform: scale(1.05); } .tag { position: absolute; top: 1rem; right: 1rem; padding: 0.35rem 0.85rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; color: var(--white); z-index: 10; } .tag-immo { background: #0284c7; } .tag-auto { background: #d97706; } .tag-job { background: #7c3aed; } .tag-school { background: #059669; } .card-body { padding: 1.5rem; } .card-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; } .location { color: var(--gray); font-size: 0.9rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; } .details { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); } .details span { display: flex; align-items: center; gap: 0.3rem; } .price-row { display: flex; justify-content: space-between; align-items: center; } .price { font-size: 1.35rem; font-weight: 800; color: var(--primary); } .salary { font-size: 1.1rem; font-weight: 700; color: var(--accent); } .promo-banner-section { padding: 3rem 0; } .promo-card { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: var(--radius); color: var(--white); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; padding: 3rem; align-items: center; } .promo-text h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; } .promo-text p { color: #ccfbf1; margin-bottom: 2rem; font-size: 1.05rem; } .promo-img img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 300px; } .page-header { background: #e2e8f0; padding: 3rem 1.5rem; text-align: center; border-radius: var(--radius); margin: 2rem auto; } .page-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; } .page-header p { color: var(--gray); } .listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; margin-bottom: 4rem; } .filters-sidebar { background: var(--white); padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); height: fit-content; position: sticky; top: 100px; } .filters-sidebar h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; } .filters-sidebar .form-group { margin-bottom: 1rem; } .listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; } .badge-success { background: #d1fae5; color: #065f46; padding: 0.35rem 0.75rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; } .footer { background: var(--dark); color: var(--white); padding: 5rem 0 2rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; margin-bottom: 3rem; } .footer-col h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; } .footer-col h3 span { color: var(--primary); } .footer-col h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; color: #f1f5f9; } .footer-col p { color: #94a3b8; font-size: 0.95rem; margin-bottom: 1.5rem; } .footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; } .footer-col ul li a { color: #94a3b8; font-size: 0.95rem; transition: color 0.3s; } .footer-col ul li a:hover { color: var(--white); } .socials { display: flex; gap: 1rem; font-size: 1.25rem; } .socials a { color: #94a3b8; transition: color 0.3s; } .socials a:hover { color: var(--primary); } .footer-bottom { text-align: center; border-top: 1px solid #334155; padding-top: 2rem; color: #94a3b8; font-size: 0.9rem; } .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.7); backdrop-filter: blur(4px); align-items: center; justify-content: center; } .modal.active { display: flex; } .modal-content { background: var(--white); padding: 2.5rem; border-radius: var(--radius); width: 100%; max-width: 500px; position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); animation: modalIn 0.3s ease; } @keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .close-modal { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 1.5rem; cursor: pointer; color: var(--gray); transition: color 0.3s; } .close-modal:hover { color: var(--dark); } .modal-content h2 { margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 800; } @media(max-width: 900px) { .nav-menu { display: none; } .hamburger { display: block; } .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 1rem; } .hero h1 { font-size: 2.2rem; } .promo-card { grid-template-columns: 1fr; padding: 2rem; } .listing-layout { grid-template-columns: 1fr; } .filters-sidebar { position: static; } }

/* Karbon Sites Branding */

  #karbon-promo-banner {
      position: fixed;
      bottom: 10px;
      right: 10px;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 8px 16px;
      border-radius: 8px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      font-size: 14px;
      z-index: 10000;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease-in-out;
  }
  #karbon-promo-banner:hover {
      transform: scale(1.05);
  }
