:root { --bg: #050505; --gold: #d4af37; --text: #f4ead0; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Inter', sans-serif; background: linear-gradient(180deg, #090909, #030303); color: var(--text); } .page { padding: 20px; } .hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; min-height: 100vh; } /* ================= LEFT 3D CARD ================= */ .scene { display: flex; justify-content: center; align-items: center; } .card-wrap { width: 420px; animation: floatCard 6s ease-in-out infinite; } .card { width: 100%; aspect-ratio: 1.58 / 1; border-radius: 30px; background: linear-gradient(135deg, #070707, #111116); border: 1px solid rgba(212,175,55,0.3); position: relative; padding: 24px; transform: perspective(1200px) rotateY(15deg) rotateX(-5deg); transition: transform 0.5s ease; } .card-wrap:hover .card { transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.03); } .elite { color: var(--gold); font-weight: 700; letter-spacing: 4px; font-size: 1.2rem; } /* NFC ICON */ .nfc { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 60px; } .nfc .arc { position: absolute; border: 3px solid transparent; border-top-color: var(--gold); border-radius: 50%; animation: pulse 2s infinite ease-in-out; } .nfc .arc.a1 { width: 70px; height: 35px; } .nfc .arc.a2 { width: 50px; height: 25px; top: 8px; left: 10px; } .nfc .arc.a3 { width: 30px; height: 15px; top: 16px; left: 20px; } .nfc .dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: absolute; top: 24px; left: 29px; } @keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } } .qr-code { position: absolute; bottom: 20px; left: 20px; width: 90px; background: #fff; padding: 6px; border-radius: 10px; border: 2px solid var(--gold); } .qr-code img { width: 100%; } .person { position: absolute; bottom: 20px; right: 20px; text-align: right; font-family: "Cormorant Garamond", serif; } .person .name { font-size: 1.4rem; } .person .role { color: var(--gold); } .person .company { font-size: 0.8rem; opacity: 0.7; } @keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } } /* ================= PROFILE ================= */ .profile { border-radius: 30px; background: linear-gradient(180deg, rgba(14,14,18,0.98), rgba(8,8,10,0.98)); border: 1px solid rgba(212,175,55,0.2); padding: 24px; max-width: 420px; margin: auto; } .profile-head { display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: center; } .avatar { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--gold); background-size: cover; background-position: center; } .profile-name { font-family: "Cormorant Garamond", serif; font-size: 2rem; } .profile-role { color: var(--gold); margin-top: 4px; } .company-name { font-size: 0.9rem; opacity: 0.8; } .menu { margin-top: 20px; display: grid; gap: 12px; } .menu-item { padding: 14px; border-radius: 12px; background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.2); cursor: pointer; transition: 0.3s; } .menu-item:hover { transform: translateX(5px); border-color: var(--gold); } /* SOCIAL ICONS */ .social-icons { display: flex; justify-content: center; gap: 12px; margin-top: 25px; } .social-icons a { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); border: 1px solid rgba(212,175,55,0.3); text-decoration: none; transition: 0.3s; } .social-icons a:hover { background: var(--gold); color: #000; } /* SAVE CARD BUTTON */ .save-card-wrapper { text-align: center; margin-top: 25px; } .btn-save-card { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 999px; background: linear-gradient(135deg, #e0bd58, #c89b20); color: #000; font-weight: 700; text-decoration: none; transition: 0.3s; } .btn-save-card:hover { transform: translateY(-2px); } /* ================= MODALS ================= */ .modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); justify-content: center; align-items: center; z-index: 9999; } .modal-content { background: #0b0b0d; border: 1px solid rgba(212,175,55,0.3); border-radius: 20px; padding: 30px; width: 90%; max-width: 500px; position: relative; animation: slideUp 0.4s ease; } .modal-content.large { max-width: 900px; } .modal-close { position: absolute; right: 15px; top: 15px; width: 36px; height: 36px; border-radius: 50%; background: rgba(212, 175, 55, 0.15); color: #d4af37; display: flex; align-items: center; justify-content: center; cursor: pointer; } @keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } /* PROFILE POPUP */ .profile-popup { text-align: center; } .profile-avatar { width: 100px; height: 100px; margin: 0 auto 15px; border-radius: 50%; border: 3px solid #d4af37; object-fit: cover; } .profile-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; margin-top: 20px; } .profile-details div { background: rgba(255, 255, 255, 0.03); padding: 12px; border-radius: 10px; border: 1px solid rgba(212, 175, 55, 0.2); } .profile-details strong { display: block; color: #d4af37; font-size: 0.8rem; } .profile-actions { display: flex; justify-content: center; gap: 12px; margin-top: 25px; flex-wrap: wrap; } .profile-actions a { padding: 10px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; color: #000; background: linear-gradient(135deg, #e0bd58, #c89b20); } /* FORM */ .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; } .form-group.full { grid-column: span 2; } .form-group input { width: 100%; padding: 14px 12px; border-radius: 10px; border: 1px solid rgba(212, 175, 55, 0.3); background: #0e0e0e; color: #fff; outline: none; } .btn-gold { margin-top: 20px; width: 100%; padding: 14px; border-radius: 999px; border: none; font-weight: 700; background: linear-gradient(135deg, #e0bd58, #c89b20); color: #000; cursor: pointer; } /* GALLERY */ .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; } .gallery img { width: 100%; border-radius: 10px; border: 2px solid rgba(212,175,55,0.3); } /* TABLE */ .contact-table { width: 100%; border-collapse: collapse; margin-top: 15px; } .contact-table th, .contact-table td { border: 1px solid rgba(212,175,55,0.2); padding: 10px; text-align: left; } /* RESPONSIVE */ @media (max-width: 992px) { .hero { grid-template-columns: 1fr; } .card-wrap { width: 320px; margin: auto; } .profile-details { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } } /* ================= FOLLOW-UP SEARCH BAR ================= */ .followup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 10px; flex-wrap: wrap; } .followup-search { position: relative; width: 100%; max-width: 320px; } .followup-search input { width: 100%; padding: 12px 40px 12px 14px; border-radius: 999px; border: 1px solid rgba(212, 175, 55, 0.3); background: #0e0e0e; color: #fff; outline: none; transition: 0.3s; } .followup-search input:focus { border-color: #d4af37; box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); } .followup-search i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #d4af37; } /* ================= SCROLLABLE TABLE ================= */ .table-container { max-height: 400px; overflow-y: auto; border-radius: 12px; border: 1px solid rgba(212, 175, 55, 0.2); } /* Custom Scrollbar */ .table-container::-webkit-scrollbar { width: 6px; } .table-container::-webkit-scrollbar-track { background: #0e0e0e; } .table-container::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 10px; } /* ================= CONTACT TABLE ================= */ .contact-table { width: 100%; border-collapse: collapse; text-align: left; } .contact-table thead { position: sticky; top: 0; background: #0b0b0d; z-index: 1; } .contact-table th, .contact-table td { padding: 12px 14px; border-bottom: 1px solid rgba(212, 175, 55, 0.15); font-size: 0.9rem; } .contact-table th { color: #d4af37; font-weight: 600; } .contact-table tbody tr:hover { background: rgba(212, 175, 55, 0.05); } /* ================= ACTION BUTTONS ================= */ .action-buttons { display: flex; gap: 6px; } .action-buttons a, .action-buttons button { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; border: none; cursor: pointer; transition: 0.3s; } .action-call { background: rgba(76, 175, 80, 0.15); color: #4caf50; } .action-whatsapp { background: rgba(37, 211, 102, 0.15); color: #25d366; } .action-email { background: rgba(33, 150, 243, 0.15); color: #2196f3; } .action-delete { background: rgba(244, 67, 54, 0.15); color: #f44336; } .action-buttons a:hover, .action-buttons button:hover { transform: scale(1.1); } /* ================= LUXURY PORTFOLIO ================= */ .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 20px; } .portfolio-item { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid rgba(212, 175, 55, 0.25); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; } .portfolio-item img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.5s ease; } .portfolio-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25); } .portfolio-item:hover img { transform: scale(1.1); } /* Overlay */ .portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); display: flex; align-items: flex-end; justify-content: center; opacity: 0; transition: 0.3s ease; padding: 10px; } .portfolio-item:hover .portfolio-overlay { opacity: 1; } .portfolio-overlay span { color: #fff; font-size: 0.9rem; background: rgba(212, 175, 55, 0.85); padding: 6px 12px; border-radius: 20px; } /* Lightbox */ .lightbox { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); justify-content: center; align-items: center; z-index: 10000; } .lightbox img { max-width: 90%; max-height: 90%; border-radius: 12px; border: 2px solid #d4af37; } .lightbox-close { position: absolute; top: 25px; right: 35px; font-size: 30px; color: #d4af37; cursor: pointer; }