/**
 * PREMIUM MOBILE APP PROFILE STYLES
 * iOS/Android app-like interface design
 */

:root {
    --profile-color: #3B82F6;
    --text-dark: #1F2937;
    --text-medium: #6B7280;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --border-color: #E5E7EB;
    
    /* Brand Colors */
    --whatsapp-green: #25D366;
    --phone-blue: #2196F3;
    --email-red: #EA4335;
    --facebook-blue: #1877F2;
    --instagram-gradient: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    --linkedin-blue: #0A66C2;
    --twitter-black: #000000;
    --youtube-red: #FF0000;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body.modern-profile {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ==================== APP HEADER WITH CURVES ==================== */
.app-header {
    position: relative;
    background: linear-gradient(135deg, var(--profile-color) 0%, #8B5CF6 100%);
    padding: 0;
    overflow: visible;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    padding: 20px 0 40px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.brand-logo i {
    font-size: 24px;
}

.menu-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== DROPDOWN MENU ==================== */
.dropdown-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-light);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: var(--light-bg);
    color: var(--profile-color);
}

.menu-item i {
    width: 20px;
    font-size: 16px;
    text-align: center;
}

.menu-item span {
    font-size: 15px;
    font-weight: 500;
}

.curve-background {
    position: relative;
    height: 150px;
    margin-top: -20px;
}

.curve-background svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==================== APP-STYLE PROFILE IDENTITY ==================== */
.profile-identity-app {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.profile-photo-container {
    margin-bottom: 20px;
}

.profile-photo-app {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    display: inline-block;
}

.profile-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--profile-color), #8B5CF6);
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
}

.profile-name-app {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.profile-role-app {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.profile-company-app {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 15px;
}

.company-logo-app {
    height: 30px;
    object-fit: contain;
}

/* ==================== CONTACT INFO DISPLAY ==================== */
.contact-info-display {
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.phone-icon {
    background: var(--phone-blue);
}

.email-icon {
    background: var(--email-red);
}

.whatsapp-icon {
    background: var(--whatsapp-green);
}

.website-icon {
    background: #6366F1;
}

.address-icon {
    background: #F59E0B;
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--profile-color);
}

/* ==================== FLOATING SIDE BUTTONS ==================== */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    border: 3px solid var(--white);
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.4);
}

.floating-btn-whatsapp {
    background: var(--whatsapp-green);
}

.floating-btn-contact {
    background: #333333;
}

/* ==================== SOCIAL MEDIA (APP STYLE) ==================== */
.social-links-app {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 40px auto;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 600px;
}

.social-icon-app {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-icon-app:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Brand Colors */
.social-facebook { background: var(--facebook-blue); }
.social-instagram { background: var(--instagram-gradient); }
.social-twitter, .social-x { background: var(--twitter-black); }
.social-linkedin { background: var(--linkedin-blue); }
.social-youtube { background: var(--youtube-red); }
.social-github { background: #333; }
.social-tiktok { background: #000; }
.social-pinterest { background: #E60023; }
.social-snapchat { background: #FFFC00; color: #000; }
.social-whatsapp { background: var(--whatsapp-green); }
.social-telegram { background: #0088cc; }

/* ==================== BIO SECTION (APP STYLE) ==================== */
.bio-section-modern {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.bio-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--border-color);
}

.bio-icon {
    width: 40px;
    height: 40px;
    background: var(--profile-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
    font-size: 18px;
}

.bio-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .app-header {
        padding: 0;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .header-top {
        padding: 16px 0 30px;
    }
    
    .brand-logo {
        font-size: 18px;
    }
    
    .brand-logo i {
        font-size: 22px;
    }
    
    .curve-background {
        height: 120px;
    }
    
    .profile-photo-app {
        width: 300px;
        height: 300px;
    }
    
    .profile-name-app {
        font-size: 24px;
    }
    
    .floating-buttons {
        padding: 0 16px;
        bottom: 16px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .contact-item {
        padding: 14px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .social-icon-app {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .profile-identity-app {
        padding: 30px 16px;
    }
    
    .profile-photo-app {
        width: 280px;
        height: 280px;
    }
    
    .profile-name-app {
        font-size: 22px;
    }
    
    .profile-role-app {
        font-size: 15px;
    }
    
    .floating-buttons {
        padding: 0 12px;
        bottom: 12px;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .bio-card {
        padding: 24px;
    }
}

/* ==================== SECTIONS ==================== */
.section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ==================== SOCIAL MEDIA ==================== */
.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Brand Colors */
.social-facebook:hover { background: #1877F2; }
.social-instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); }
.social-twitter:hover, .social-x:hover { background: #000000; }
.social-linkedin:hover { background: #0A66C2; }
.social-youtube:hover { background: #FF0000; }
.social-github:hover { background: #333; }
.social-tiktok:hover { background: #000000; }
.social-pinterest:hover { background: #E60023; }
.social-snapchat:hover { background: #FFFC00; color: #000; }
.social-whatsapp:hover { background: #25D366; }
.social-telegram:hover { background: #0088cc; }

/* ==================== SECTIONS ==================== */
.section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--profile-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-content p {
    margin-bottom: 16px;
}

.read-more-toggle {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--profile-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-toggle:hover {
    background: #2563EB;
}

/* ==================== SKILLS / PROGRESS BARS ==================== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.skill-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.skill-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.skill-bar {
    width: 100%;
    height: 12px;
    background: var(--light-bg);
    border-radius: 999px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--profile-color), #8B5CF6);
    border-radius: 999px;
    transition: width 1s ease;
    animation: slideIn 1.5s ease-out;
}

@keyframes slideIn {
    from { width: 0; }
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--profile-color), #8B5CF6);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--profile-color);
}

/* ==================== PORTFOLIO ==================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--light-bg);
}

.portfolio-content {
    padding: 24px;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.portfolio-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--profile-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.portfolio-link:hover {
    text-decoration: underline;
}

/* ==================== EXPERIENCE TIMELINE ==================== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-bg);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--profile-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--profile-color);
}

.timeline-type {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light-bg);
    color: var(--profile-color);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.timeline-organization {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.timeline-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== ADDRESS & MAP ==================== */
.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.address-text {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.map-embed {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-overlay-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--profile-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.map-overlay-button:hover {
    background: #2563EB;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.map-button-modern,
.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--profile-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-button-modern:hover,
.map-button:hover {
    background: #2563EB;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}



/* ==================== FOOTER ==================== */
.profile-footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 32px 20px;
    margin-top: 64px;
}

.profile-footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .hero-banner-modern {
        height: 300px;
    }
    
    .profile-card-modern {
        margin: -80px auto 50px;
    }
    
    .profile-card-inner {
        padding: 40px 28px;
        border-radius: 28px;
    }
    
    .profile-photo-modern {
        width: 320px;
        height: 320px;
        border-width: 4px;
    }
    
    .profile-name-modern {
        font-size: 28px;
    }
    
    .section-title-modern {
        font-size: 28px;
    }
    
    .section-icon {
        width: 48px;
        height: 48px;
    }
    
    .primary-actions {
        flex-direction: column;
    }
    
    .primary-btn {
        width: 100%;
        max-width: 100%;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
    }
    
    .skills-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .services-grid-modern,
    .portfolio-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-section-modern {
        padding: 60px 20px;
        margin: 60px 0;
        border-radius: 30px;
    }
    
    .timeline-modern {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: -43px;
    }
    
    .section-modern {
        margin: 60px auto;
    }
    
    .content-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero-banner-modern {
        height: 250px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        width: 350px;
        height: 350px;
    }
    
    .profile-card-modern {
        margin: -60px auto 40px;
        padding: 0 16px;
    }
    
    .profile-card-inner {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .profile-photo-modern {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .profile-name-modern {
        font-size: 24px;
    }
    
    .role-badge {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-title-modern {
        font-size: 24px;
        text-align: center;
    }
    
    .section-icon {
        width: 44px;
        height: 44px;
    }
    
    .bio-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .bio-icon {
        width: 40px;
        height: 40px;
    }
    
    .bio-text {
        font-size: 16px;
    }
    
    .primary-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .skill-card-modern {
        padding: 24px;
        border-radius: 16px;
    }
    
    .service-card-modern {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .service-icon-modern {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
    
    .service-title-modern {
        font-size: 20px;
    }
    
    .portfolio-image-wrapper {
        height: 200px;
    }
    
    .portfolio-content-modern {
        padding: 24px;
    }
    
    .timeline-modern {
        padding-left: 40px;
    }
    
    .timeline-modern::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: -38px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .timeline-card-modern {
        padding: 24px;
        border-radius: 16px;
    }
    
    .timeline-title-modern {
        font-size: 19px;
    }
    
    .section-modern {
        margin: 50px auto;
    }
    
    .content-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .map-overlay-button {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== LOADING STATE ==================== */
.skeleton {
    background: linear-gradient(90deg, var(--light-bg) 25%, #E5E7EB 50%, var(--light-bg) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
