/* Professional Dashboard-Style CSS */
:root {
    --bg-color: #f2f2f7;
    --card-bg: #ffffff;
    --text-color: #1c1c1e;
    --header-bg: rgba(255, 255, 255, 0.8);
    --accent-color: #007aff;
    --accent-hover: #0056b3;
    --secondary-text: #8e8e93;
    --tag-bg: #e5e5ea;
    --border-color: rgba(0,0,0,0.1);
    --shadow: 0 20px 40px rgba(0,0,0,0.1);
}

[data-theme="dark"] {
    --bg-color: #000000;
    --card-bg: #1c1c1e;
    --text-color: #f5f5f7;
    --header-bg: rgba(28, 28, 30, 0.8);
    --accent-color: #0a84ff;
    --accent-hover: #409cff;
    --secondary-text: #a1a1a6;
    --tag-bg: #3a3a3c;
    --border-color: rgba(255,255,255,0.1);
    --shadow: 0 20px 40px rgba(0,0,0,0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background-color 0.4s;
}

/* Header */
header {
    height: 50px;
    background-color: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo { font-size: 14px; font-weight: 600; opacity: 0.8; }

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    opacity: 0.6;
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
}

/* Profile Card */
.profile-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 850px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: flex;
    overflow: hidden;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left Side */
.card-left {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-color), #5856d6);
    padding: 40px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-img-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
    margin-bottom: 24px;
    background: white;
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.identity h1 { font-size: 28px; margin-bottom: 8px; }
.identity .title { font-size: 18px; font-weight: 300; opacity: 0.9; }
.experience { font-size: 15px; opacity: 0.8; margin-bottom: 30px; }

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.primary-btn, .secondary-btn {
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
}

.primary-btn {
    background-color: white;
    color: var(--accent-color);
}

.secondary-btn {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.primary-btn:hover, .secondary-btn:hover { transform: translateY(-2px); }

/* Right Side */
.card-right {
    flex: 1.4;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-section {
    position: relative;
}

.info-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 6px 12px;
    background-color: var(--tag-bg);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-text);
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-text);
}

/* Consultation Highlight Section */
.consultation-highlight {
    background-color: var(--tag-bg);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.1);
}

.section-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-phone {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s, transform 0.3s;
}

.main-phone:hover {
    color: var(--accent-hover);
    transform: scale(1.02);
}

.main-phone i {
    font-size: 28px;
    animation: pulse 2s infinite;
}

.sub-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--secondary-text);
}

.contact-item i {
    width: 20px;
    color: var(--accent-color);
}

.guide-text {
    margin-top: 15px;
    font-size: 12px;
    color: var(--secondary-text);
    font-style: italic;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    font-size: 11px;
    color: var(--secondary-text);
    opacity: 0.7;
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-card { flex-direction: column; max-width: 450px; }
    .card-left { padding: 40px 30px; }
    .card-right { padding: 30px; gap: 24px; }
    .profile-img-wrapper { width: 140px; height: 140px; }
    .main-phone { font-size: 28px; }
}
