/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.main-content {
    padding-top: 20px;
}

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

/* Page Header */
.page-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Card Base Styles */
.contact-card,
.social-card,
.inspiration-card,
.cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 30px;
}

.contact-card.animate-in,
.social-card.animate-in,
.inspiration-card.animate-in,
.cta-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.card-header i {
    font-size: 1.5rem;
    color: #667eea;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Location Card */
.address-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.address-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.address-item h4 i {
    color: #667eea;
}

.address-details p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 5px;
    padding-left: 25px;
}

/* Contact Details Card */
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Social Section */
.social-section {
    margin-bottom: 40px;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
    color: white;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    color: white;
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #ee1d52);
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
    color: white;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.social-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-info p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.external-icon {
    margin-left: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-link:hover .external-icon {
    opacity: 1;
    transform: translateX(5px);
}

/* Inspiration Section */
.inspiration-section {
    margin-bottom: 40px;
}

.inspiration-content {
    line-height: 1.7;
}

.inspiration-intro {
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.inspirations-grid {
    margin-bottom: 30px;
}

.inspiration-person {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.inspiration-person:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.primary-inspiration {
    border-left-color: #764ba2;
    border-left-width: 6px;
}

.person-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.person-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.person-info h4,
.person-info h5 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.person-role {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.person-description {
    margin-top: 15px;
    padding-left: 65px;
}

.person-description p {
    color: #555;
    font-style: italic;
}

.other-inspirations h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    margin: 30px 0 20px;
    font-size: 1.3rem;
}

.other-inspirations h4 i {
    color: #667eea;
}

.inspiration-note {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.inspiration-note p {
    color: #2c3e50;
    font-style: italic;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    margin-bottom: 40px;
}

.cta-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.cta-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Copy Tooltip */
.copy-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card,
    .social-card,
    .inspiration-card,
    .cta-card {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-link {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .external-icon {
        margin-left: 0;
    }
    
    .inspiration-note {
        flex-direction: column;
        text-align: center;
    }
    
    .person-description {
        padding-left: 0;
    }
}

/* Animation delays for staggered effect */
.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.social-card {
    animation-delay: 0.3s;
}

.inspiration-card {
    animation-delay: 0.4s;
}

.cta-card {
    animation-delay: 0.5s;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
    animation: fadeInUp 0.8s ease-out;
}