* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #c2d7e4 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: #a8c5e0;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: #c4d9e8;
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
}

.orb3 {
    width: 350px;
    height: 350px;
    background: #b8d4e6;
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

.card-container {
    position: relative;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(168, 197, 224, 0.2);
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #7fa3c4, #5d8ab0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
    border: 4px solid #e6f0f5;
    box-shadow: 0 8px 24px rgba(125, 163, 196, 0.15);
}

h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.bio {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #f5f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5d8ab0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e1ecf4;
}

.social-links a:hover {
    background: #e6f0f5;
    border-color: #7fa3c4;
    transform: translateY(-3px);
}

.email-btn {
    background: linear-gradient(135deg, #7fa3c4, #5d8ab0);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(93, 138, 176, 0.15);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(93, 138, 176, 0.25);
}

.email-btn:active {
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(168, 197, 224, 0.2);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #5a6c7d;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f5f8fa;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1ecf4;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: #f5f8fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7fa3c4;
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #7fa3c4, #5d8ab0);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(93, 138, 176, 0.15);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(93, 138, 176, 0.25);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.success-message.active {
    display: block;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}