:root { --primary: #10b981; --primary-dark: #059669; --secondary: #1e293b; --light: #f8fafc; --gray: #64748b; --border: #e2e8f0; --white: #ffffff; --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); --transition: all 0.3s ease; } * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background-color: var(--white); color: var(--secondary); line-height: 1.6; } a { text-decoration: none; color: inherit; } ul { list-style: none; } img { max-width: 100%; height: auto; display: block; } .container { width: 90%; max-width: 1200px; margin: 0 auto; } .btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; } .btn-primary { background-color: var(--primary); color: var(--white); } .btn-primary:hover { background-color: var(--primary-dark); } .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 0.5rem 1rem; border-radius: 4px; font-weight: 600; cursor: pointer; transition: var(--transition); } .btn-outline:hover { background: var(--primary); color: var(--white); } .header { background: var(--white); box-shadow: 0 2px 4px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; } .nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; } .logo { font-size: 1.8rem; font-weight: 800; color: var(--secondary); display: flex; align-items: center; gap: 0.5rem; } .logo span { color: var(--primary); } .header-contact { display: flex; align-items: center; gap: 1rem; } .flambeau-logo { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: linear-gradient(135deg, #f59e0b, #ef4444); color: var(--white); border-radius: 50%; animation: flameSpin 3s infinite linear; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3); } @keyframes flameSpin { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.1); filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8)); } 100% { transform: rotate(360deg) scale(1); } } .nav-menu { display: flex; gap: 1.5rem; align-items: center; } .nav-menu a { font-weight: 600; color: var(--gray); transition: var(--transition); font-size: 0.95rem; } .nav-menu a:hover, .nav-menu a.active { color: var(--primary); } .dropdown { position: relative; } .dropdown-toggle { display: flex; align-items: center; gap: 0.35rem; } .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 260px; box-shadow: var(--shadow); border-radius: 8px; border: 1px solid var(--border); padding: 0.5rem 0; z-index: 1001; } .dropdown:hover .dropdown-menu { display: block; } .dropdown-menu a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; color: var(--secondary); font-size: 0.9rem; width: 100%; } .dropdown-menu a:hover { background: var(--light); color: var(--primary); } .hamburger { display: none; font-size: 1.5rem; cursor: pointer; } .hero { height: 80vh; min-height: 500px; position: relative; display: flex; align-items: center; background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; } .hero-bg { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5); } .hero-content { position: relative; z-index: 10; color: var(--white); max-width: 700px; } .hero-content h1 { font-size: 3rem; margin-bottom: 1rem; line-height: 1.2; } .hero-content h1 span { color: var(--primary); } .hero-content p { font-size: 1.2rem; margin-bottom: 2rem; color: #e2e8f0; } .search-box { background: var(--white); padding: 1.5rem; border-radius: 12px; display: flex; gap: 1rem; box-shadow: var(--shadow); } .search-group { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; } .search-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray); } .search-group select { padding: 0.75rem; border: 1px solid var(--border); border-radius: 6px; outline: none; font-size: 1rem; background: var(--white); } .search-btn { align-self: flex-end; height: 46px; display: flex; align-items: center; justify-content: center; gap: 0.5rem; } .space-finder-quick { padding: 4rem 0 2rem; } .space-tabs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .space-tab-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); } .space-tab-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--shadow); } .space-icon { width: 70px; height: 70px; background: rgba(16, 185, 129, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.5rem; transition: var(--transition); } .space-tab-card:hover .space-icon { background: var(--primary); color: var(--white); } .space-tab-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--secondary); } .space-tab-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.5rem; } .space-link { font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; } .slide-tabs-section { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } .slide-tabs-container { background: var(--white); border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; max-width: 1000px; margin: 0 auto; } .slide-tabs-header { display: flex; background: var(--light); border-bottom: 1px solid var(--border); overflow-x: auto; } .slide-tab-btn { flex: 1; padding: 1.25rem 2rem; border: none; background: transparent; font-size: 1rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.75rem; white-space: nowrap; } .slide-tab-btn:hover { color: var(--primary); background: rgba(16, 185, 129, 0.05); } .slide-tab-btn.active { color: var(--primary); background: var(--white); border-bottom: 3px solid var(--primary); } .slide-tabs-body { padding: 3rem; } .slide-tab-pane { display: none; animation: fadeInPane 0.4s ease-in-out; } .slide-tab-pane.active { display: block; } @keyframes fadeInPane { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .pane-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .pane-content-grid h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--secondary); } .pane-content-grid p { color: var(--gray); font-size: 1.05rem; margin-bottom: 1.5rem; } .pane-img { border-radius: 12px; overflow: hidden; height: 300px; box-shadow: var(--shadow); } .pane-img img { width: 100%; height: 100%; object-fit: cover; } .features { padding: 5rem 0; } .section-title { text-align: center; margin-bottom: 3rem; } .section-title h2 { font-size: 2.2rem; color: var(--secondary); margin-bottom: 0.5rem; } .section-title p { color: var(--gray); } .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .feature-card { background: var(--white); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border); transition: var(--transition); text-align: center; } .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; } .feature-card .icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; } .feature-card h3 { margin-bottom: 1rem; } .bg-light { background-color: var(--light); padding: 5rem 0; } .property-card, .agent-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); position: relative; } .property-card:hover, .agent-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); } .property-img, .agent-img { position: relative; height: 240px; } .property-img img, .agent-img img { width: 100%; height: 100%; object-fit: cover; } .badge { position: absolute; top: 1rem; right: 1rem; background: var(--primary); color: var(--white); padding: 0.25rem 0.75rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; } .badge.rent { background: #3b82f6; } .property-info, .agent-info { padding: 1.5rem; } .property-info h3, .agent-info h3 { margin-bottom: 0.5rem; font-size: 1.2rem; } .property-info .location, .agent-role, .agent-city, .agent-phone { color: var(--gray); font-size: 0.9rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; } .details { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--gray); } .price-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 1rem; } .price { font-size: 1.3rem; font-weight: 700; color: var(--primary); } .footer { background: var(--secondary); color: var(--white); position: relative; } .footer-toggle-bar { background: #141c27; border-top: 1px solid rgba(255,255,255,0.05); padding: 1rem 0; cursor: pointer; transition: var(--transition); } .footer-toggle-bar:hover { background: #1a2432; } .footer-toggle-content { display: flex; justify-content: space-between; align-items: center; color: #94a3b8; font-size: 0.95rem; font-weight: 600; } .footer-toggle-btn { background: transparent; border: none; color: var(--primary); font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; } .footer-sliding-panel { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out; background: var(--secondary); padding: 0 0; } .footer-sliding-panel.open { max-height: 500px; padding: 3rem 0 1rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; } .footer-col h3 { font-size: 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; } .footer-col h3 span { color: var(--primary); } .footer-col h4 { margin-bottom: 1rem; font-size: 1.1rem; } .footer-col p { color: #94a3b8; margin-bottom: 1rem; } .footer-col ul li { margin-bottom: 0.5rem; } .footer-col ul li a { color: #94a3b8; transition: var(--transition); } .footer-col ul li a:hover { color: var(--primary); } .socials { display: flex; gap: 1rem; } .socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); } .socials a:hover { background: var(--primary); color: var(--white); } .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; color: #94a3b8; font-size: 0.9rem; } .page-header { padding: 4rem 0 2rem; text-align: center; } .page-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; } .page-header p { color: var(--gray); } .catalogue-section, .agents-section, .partnership-section { padding: 2rem 0 5rem; } .filters-bar { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; } .filter-btn { padding: 0.6rem 1.5rem; border: 1px solid var(--border); background: var(--white); border-radius: 30px; font-weight: 600; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; } .filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); } .map-section { padding: 2rem 0 5rem; } .map-container-wrapper { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; height: 600px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); } #map { width: 100%; height: 100%; } .map-sidebar { padding: 1.5rem; overflow-y: auto; background: var(--light); } .map-sidebar h3 { margin-bottom: 1rem; font-size: 1.2rem; } .map-list li { background: var(--white); padding: 1rem; border-radius: 8px; margin-bottom: 1rem; border: 1px solid var(--border); cursor: pointer; transition: var(--transition); } .map-list li:hover { border-color: var(--primary); } .map-list li h4 { font-size: 1rem; margin-bottom: 0.25rem; } .map-list li p { font-size: 0.85rem; color: var(--gray); } .contact-section, .payment-section { padding: 2rem 0 5rem; } .contact-grid, .payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; } .contact-info-box, .payment-card-box { background: var(--light); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow); } .contact-info-box h3, .payment-card-box h3 { margin-bottom: 1.5rem; font-size: 1.5rem; } .contact-info-box p { margin-bottom: 1rem; color: var(--gray); display: flex; gap: 1rem; align-items: center; } .contact-form { background: var(--white); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow); } .form-group { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; } .form-group label { font-weight: 600; font-size: 0.9rem; } .form-group input, .form-group textarea, .form-group select { padding: 0.75rem; border: 1px solid var(--border); border-radius: 6px; outline: none; font-size: 1rem; width: 100%; background: var(--white); } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); } .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; } .modal-content { background: var(--white); padding: 2.5rem; border-radius: 12px; width: 100%; max-width: 500px; position: relative; box-shadow: var(--shadow); } .close { position: absolute; top: 1rem; right: 1.5rem; font-size: 1.5rem; cursor: pointer; color: var(--gray); } .close:hover { color: var(--secondary); } .global-loader { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 99999; align-items: center; justify-content: center; flex-direction: column; color: var(--white); gap: 1rem; } .loader-spinner { width: 50px; height: 50px; border: 5px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: var(--primary); animation: spin 1s ease-in-out infinite; } @keyframes spin { to { transform: rotate(360deg); } } .global-loader p { font-size: 1.1rem; font-weight: 600; } .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 9999; transition: var(--transition); } .whatsapp-float:hover { background-color: #20ba5a; transform: scale(1.1); color: #fff; } @media(max-width: 768px) { .nav-menu { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 2rem; box-shadow: var(--shadow); } .nav-menu.active { display: flex; } .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 1rem; } .hamburger { display: block; } .header-contact { display: none; } .search-box { flex-direction: column; } .map-container-wrapper { grid-template-columns: 1fr; height: auto; } #map { height: 400px; } .contact-grid, .payment-grid { grid-template-columns: 1fr; } .hero-content h1 { font-size: 2.2rem; } .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; } .pane-content-grid { grid-template-columns: 1fr; gap: 1.5rem; } .slide-tabs-body { padding: 1.5rem; } }

/* 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);
  }
