/* ============================================
   Arjun Malik - Laravel Website Styles
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a, button {
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo-text-accent {
    font-size: 1.5rem;
    font-weight: 800;
    color: #facc15;
    margin-left: 0.25rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #facc15;
    background: rgba(250, 204, 21, 0.1);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 8px;
    color: #facc15;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(250, 204, 21, 0.2);
    border-color: rgba(250, 204, 21, 0.5);
}

.lang-btn .lang-flag {
    font-size: 1.1rem;
}

.lang-btn .lang-name {
    font-size: 0.875rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #1a1a2e;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.lang-option.active {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
    font-weight: 600;
}

.lang-option .check-icon {
    margin-left: auto;
    color: #22c55e;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    background: linear-gradient(145deg, #0a0a0a 0%, #141414 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #facc15;
    box-shadow: 0 0 40px rgba(250, 204, 21, 0.3), 0 0 80px rgba(250, 204, 21, 0.1);
    animation: glow 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(250, 204, 21, 0.5), 0 0 100px rgba(250, 204, 21, 0.2);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.logo-circle:hover img {
    transform: scale(1.1);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 40px rgba(250, 204, 21, 0.3), 0 0 80px rgba(250, 204, 21, 0.1); }
    50% { box-shadow: 0 0 60px rgba(250, 204, 21, 0.5), 0 0 100px rgba(250, 204, 21, 0.2); }
}

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-label span {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #facc15);
}

.hero-label span:last-child {
    background: linear-gradient(90deg, #facc15, transparent);
}

.hero-label p {
    color: #facc15;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-white {
    color: #fff;
}

.text-gradient {
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: #9ca3af;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.hero-btn svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 3rem;
}

.section-title.text-yellow {
    color: #facc15;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
}

.service-card-0 {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card-1 {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

.service-card-2 {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
    border-color: rgba(6, 182, 212, 0.3);
}

.service-card-3 {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-0:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.service-card-1:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.service-card-2:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.service-card-3:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(250, 204, 21, 0.15);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #facc15;
}

.service-description {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-card:hover .service-btn {
    background: #22c55e;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* ============================================
   ID Creation Section
   ============================================ */
.id-creation {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.id-creation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.id-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid;
    transition: all 0.3s ease;
}

.id-card-green {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.id-card-green:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.id-card-blue {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.id-card-blue:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.id-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.id-card-green .id-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.id-card-blue .id-icon {
    background: rgba(59, 130, 246, 0.15);
}

.id-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.id-icon svg {
    width: 35px;
    height: 35px;
}

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

.id-card-green:hover .id-icon {
    background: rgba(34, 197, 94, 0.25);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.id-card-blue:hover .id-icon {
    background: rgba(59, 130, 246, 0.25);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.id-card:hover .id-icon img {
    transform: scale(1.08);
}

.id-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.id-card p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.id-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.id-btn-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.id-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.id-btn-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.id-btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Verified Agent Link */
.verified-agent-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(250, 204, 21, 0.15) 0%, rgba(234, 179, 8, 0.1) 100%);
    border: 1px solid rgba(250, 204, 21, 0.4);
    border-radius: 12px;
    color: #facc15;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verified-agent-link:hover {
    background: linear-gradient(145deg, rgba(250, 204, 21, 0.25) 0%, rgba(234, 179, 8, 0.15) 100%);
    border-color: rgba(250, 204, 21, 0.7);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.2);
}

/* Agent List */
.agent-list {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 20px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agent-list-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.agent-list-header svg {
    color: #facc15;
}

.agent-list-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #facc15;
}

.agent-list-desc {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.agent-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.agent-card:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
}

.agent-info {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-weight: 600;
    color: #fff;
}

.agent-status {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.status-online {
    color: #22c55e;
}

.status-busy {
    color: #eab308;
}

.agent-card svg {
    color: #22c55e;
}

.agent-list-close {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #9ca3af;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agent-list-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-section {
    text-align: center;
    margin-bottom: 2rem;
}

.follow-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    background: rgba(250, 204, 21, 0.1);
    border-color: #facc15;
    color: #facc15;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.brand-text-accent {
    font-size: 1.25rem;
    font-weight: 700;
    color: #facc15;
    margin-left: 0.25rem;
}

.powered-by {
    color: #6b7280;
    font-size: 0.9rem;
}

.livechat-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 50px;
    color: #facc15;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.livechat-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.livechat-btn:hover {
    background: rgba(250, 204, 21, 0.2);
    border-color: rgba(250, 204, 21, 0.5);
}

.copyright {
    text-align: center;
}

.copyright p {
    color: #4b5563;
    font-size: 0.85rem;
}

/* ============================================
   Floating Live Chat
   ============================================ */
.floating-livechat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(250, 204, 21, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
    overflow: hidden;
}

.floating-livechat img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    pointer-events: none;
}

.floating-livechat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(250, 204, 21, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(34, 197, 94, 0.6); }
}

/* ============================================
   Popup
   ============================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 1rem;
}

.popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.7; transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.popup-title .text-yellow {
    color: #facc15;
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
}

.popup-title .text-green {
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.popup-description {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.popup-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.popup-btn:hover svg {
    transform: scale(1.1);
}

.popup-btn-primary {
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.4);
}

.popup-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.5);
}

.popup-btn-secondary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.popup-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.popup-footer {
    color: #6b7280;
    font-size: 0.8rem;
    font-style: italic;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .services-grid,
    .id-creation-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .popup-container {
        padding: 2rem 1.25rem;
    }
    
    .popup-title {
        font-size: 1.4rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #facc15;
}
