:root {
    /* Brand Colors */
    --primary-color: #1E3A8A; /* Dark Blue from Logo */
    --secondary-color: #3B82F6; /* Lighter Blue */
    --accent-color: #60A5FA;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --bg-gradient-start: #EFF6FF;
    --bg-gradient-end: #DBEAFE;
    
    /* Spacing & Sizes */
    --border-radius: 24px;
    --card-width: 400px;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* Background Animated Shapes */
.background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.2);
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(30, 58, 138, 0.15);
    bottom: -20px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Card Container */
.card-container {
    width: 100%;
    max-width: var(--card-width);
    z-index: 10;
}

/* Glassmorphism Card Style */
.card.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-glass);
    transition: transform 0.3s ease;
}

.card.glass:hover {
    transform: translateY(-5px);
}

/* Header */
.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.profile-image-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    position: relative;
    border-radius: 50%;
    background: white;
    padding: 4px; /* Border gap */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Since it's a logo, contain is better than cover usually */
    border-radius: 50%;
    background-color: white; /* Fallback */
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-gradient-end);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.4;
}

.company-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.company-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.2s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.icon-box {
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info {
    display: flex;
    flex-direction: column;
}

.info .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 2px;
}

.info .text {
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1.4;
    font-weight: 500;
}

.info a.text:hover {
    color: var(--secondary-color);
}

/* Footer / Button */
.actions-footer {
    text-align: center;
}

.primary-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.35);
}

.primary-btn:active {
    transform: translateY(1px);
}

.footer {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 380px) {
    :root {
        --card-width: 100%;
    }
    
    .card.glass {
        padding: 20px;
    }
    
    .name {
        font-size: 1.35rem;
    }
}
