@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #fff5f5 0%, #ffe8e8 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(220,38,38,0.05)"/><circle cx="80" cy="70" r="25" fill="rgba(220,38,38,0.04)"/><circle cx="50" cy="90" r="20" fill="rgba(220,38,38,0.03)"/><circle cx="90" cy="30" r="12" fill="rgba(220,38,38,0.06)"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

/* Main Card - Glassmorphism */
.nfc-card {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-radius: 56px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
}

.nfc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px rgba(220, 38, 38, 0.15);
}

/* Decorative Elements */
.nfc-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nfc-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Language Switcher */
.lang-switch {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 20;
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.2s;
}

.lang-btn.active {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.lang-btn:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 32px 24px 40px;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* Logo Row */
.logo-row {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.logo-bubble {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 10px 24px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.logo-bubble img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-bubble span {
    font-weight: 700;
    font-size: 16px;
    color: white;
    letter-spacing: 0.5px;
}

/* Avatar */
.avatar-ring {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.avatar-ring::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #dc2626, #fca5a5, #dc2626);
    border-radius: 50%;
    z-index: 0;
    animation: rotateRing 3s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    background: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.avatar-initials {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(145deg, #dc2626, #991b1b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 700;
    color: white;
    border: 4px solid white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.online-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid white;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.role-pill {
    display: inline-block;
    background: #fef2f2;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
    margin-top: 6px;
}

/* Action Buttons */
.action-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.action-btn {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.action-btn i {
    font-size: 24px;
}

.action-btn.call i { color: #22c55e; }
.action-btn.whatsapp i { color: #25D366; }
.action-btn.email i { color: #3b82f6; }

.action-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Content */
.content {
    padding: 8px 24px 32px;
    position: relative;
    z-index: 5;
    background: white;
    border-radius: 48px 48px 0 0;
    margin-top: -8px;
}

/* Section */
.section {
    margin-bottom: 32px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fef2f2;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #fef2f2, #fff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.section-icon i {
    font-size: 18px;
    color: #dc2626;
}

.section-head h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

/* Star Rating */
.star-wrapper {
    text-align: center;
    background: #fafafa;
    border-radius: 48px;
    padding: 24px 20px;
}

.star-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    direction: rtl;
    margin: 16px 0;
}

.star-group input {
    display: none;
}

.star-group label {
    font-size: 52px;
    cursor: pointer;
    color: #e5e7eb;
    transition: all 0.15s ease;
}

.star-group label:hover {
    transform: scale(1.1);
}

.star-group input:checked ~ label,
.star-group label:hover,
.star-group label:hover ~ label {
    color: #fbbf24;
}

.star-input textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 32px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    transition: all 0.2s;
    background: white;
}

.star-input textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 48px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

/* Social Grid */
.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-btn {
    flex: 1;
    min-width: 110px;
    padding: 14px 20px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.social-btn.ig { background: linear-gradient(45deg, #f09433, #d62976, #962fbf); }
.social-btn.fb { background: #1877f2; }
.social-btn.tt { background: #000000; }

/* Team List */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-item {
    background: #fafafa;
    border-radius: 32px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.team-item:hover {
    background: #fef2f2;
    transform: translateX(5px);
}

.team-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.team-initial {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, #dc2626, #b91c1c);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.team-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.team-info p {
    font-size: 11px;
    color: #9ca3af;
}

.team-icons {
    display: flex;
    gap: 16px;
}

.team-icons a {
    color: #dc2626;
    font-size: 18px;
    transition: all 0.2s;
}

.team-icons a:hover {
    transform: scale(1.15);
}

/* Offer Cards */
.offer-card {
    background: linear-gradient(145deg, #fafafa, #ffffff);
    border-radius: 32px;
    padding: 16px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.offer-card:hover {
    transform: translateX(8px);
    border-color: #fecaca;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.offer-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #dc2626, #b91c1c);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon i {
    font-size: 26px;
    color: white;
}

.offer-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.offer-text p {
    font-size: 12px;
    color: #6b7280;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 36px;
    padding: 28px 24px;
    text-align: center;
    margin-top: 16px;
}

.newsletter-box i {
    font-size: 44px;
    color: #dc2626;
    margin-bottom: 12px;
}

.newsletter-box h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.newsletter-box input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 48px;
    margin-bottom: 12px;
    font-size: 14px;
    background: #2d3748;
    color: white;
}

.newsletter-box input::placeholder {
    color: #9ca3af;
}

.newsletter-box button {
    width: 100%;
    background: #dc2626;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 48px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-box button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Action Buttons */
.btn-block {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-red {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.btn-outline {
    border: 2px solid #dc2626;
    color: #dc2626;
    background: transparent;
}

.btn-outline:hover {
    background: #fef2f2;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 500px) {
    body {
        padding: 12px;
    }
    
    .nfc-card {
        border-radius: 40px;
    }
    
    .hero {
        padding: 24px 20px 32px;
    }
    
    .avatar, .avatar-initials {
        width: 90px;
        height: 90px;
    }
    
    .avatar-initials {
        font-size: 36px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .content {
        padding: 8px 20px 28px;
    }
    
    .star-group label {
        font-size: 42px;
    }
    
    .social-btn {
        min-width: 90px;
        font-size: 11px;
        padding: 12px 16px;
    }
    
    .action-btn {
        width: 48px;
        height: 48px;
    }
    
    .action-btn i {
        font-size: 20px;
    }
}