/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
}

/* ============================================
   THEME VARIABLES - MATCHING HELP & CONTACT PAGE
   ============================================ */

/* Light Theme */
body {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-strong: #94a3b8;
    --border-black: #0f172a;
    --border-white: #ffffff;
    
    /* Light mode accent colors */
    --accent-blue: #2563eb;
    --accent-green: #16a34a;
    --accent-1: #2563eb;
    --accent-2: #16a34a;
    --accent-yellow: #eab308;
    
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hover-bg: #f8fafc;
    --active-bg: #e2e8f0;
    
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --success-color: #16a34a;
    --warning-color: #eab308;
    --danger-color: #dc2626;
    --info-color: #0ea5e9;
    
    --footer-bg: #1e293b;
    --footer-text: #f8fafc;
    
    --border-radius-sm: 12px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-circle: 50%;
}

/* Dark Theme - Black & Yellow combination */
body.dark {
    --bg-primary: #0a0c0f;
    --bg-secondary: #14181c;
    --bg-tertiary: #1e2429;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-light: #2d3748;
    --border-medium: #4a5568;
    --border-strong: #718096;
    --border-black: #f1f5f9;
    --border-white: #0a0c0f;
    
    /* Dark mode accent colors - black & yellow */
    --accent-blue: #fbbf24;
    --accent-green: #f59e0b;
    --accent-1: #fbbf24;
    --accent-2: #f59e0b;
    --accent-yellow: #fbbf24;
    
    --card-bg: #14181c;
    --card-border: #2d3748;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --hover-bg: #1e2429;
    --active-bg: #2d3748;
    
    --primary-color: #fbbf24;
    --primary-dark: #f59e0b;
    --primary-light: #fcd34d;
    --success-color: #fbbf24;
    --warning-color: #f59e0b;
    --danger-color: #f87171;
    --info-color: #fbbf24;
    
    --footer-bg: #0a0c0f;
    --footer-text: #f1f5f9;
    
    --border-radius-sm: 12px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-circle: 50%;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

/* Settings Icon */
.settings-icon {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(67, 98, 201, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.settings-icon:hover {
    transform: scale(1.1) rotate(90deg);
    background: rgba(67, 98, 201, 0.1);
    border-color: #4362C9;
    box-shadow: 0 8px 25px rgba(67, 98, 201, 0.15);
}

.settings-icon svg {
    color: #4362C9;
    transition: color 0.3s ease;
}

.settings-icon:hover svg {
    color: #01A060;
}

body.dark .settings-icon {
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark .settings-icon:hover {
    background: rgba(67, 98, 201, 0.2);
    border-color: var(--accent-1);
}

/* Settings Dropdown */
.settings-dropdown {
    position: fixed;
    top: 90px;
    right: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-black);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--card-shadow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
}

.settings-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.settings-section {
    margin-bottom: 24px;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.language-option {
    padding: 8px 16px;
    border: 1px solid var(--border-medium);
    border-radius: var(--border-radius-md);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.language-option:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
    transform: translateY(-2px);
    background: var(--hover-bg);
}

.language-option.active {
    background: var(--accent-2);
    border-color: var(--accent-2);
    color: #FFFFFF;
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.theme-option {
    padding: 8px 16px;
    border: 1px solid var(--border-medium);
    border-radius: var(--border-radius-md);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    min-width: 80px;
}

.theme-option:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
    transform: translateY(-2px);
    background: var(--hover-bg);
}

.theme-option.active {
    background: var(--accent-2);
    border-color: var(--accent-2);
    color: #FFFFFF;
}

/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Page Title Section */
.page-title-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Role Cards Section - RESPONSIVE GRID */
.role-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Responsive: Mobile view - single column */
@media (max-width: 768px) {
    .role-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-content {
        padding: 20px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .page-title-section {
        margin-bottom: 40px;
    }
}

/* Responsive: Small mobile devices */
@media (max-width: 480px) {
    .role-cards {
        gap: 25px;
    }
    
    .main-content {
        padding: 15px 0 40px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .page-title-section {
        margin-bottom: 30px;
    }
}

.role-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-black);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive: Card padding for mobile */
@media (max-width: 768px) {
    .role-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .role-card {
        padding: 30px 25px;
    }
}

.role-card.kaam-dhundho {
    animation-delay: 0.2s;
}

.role-card.kaam-karao {
    animation-delay: 0.4s;
}

.role-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.role-card:hover::before {
    transform: scaleX(1);
}

.kaam-dhundho:hover {
    border-color: var(--accent-1);
}

.kaam-karao:hover {
    border-color: var(--accent-2);
}

/* Card Icon */
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    border: 2px solid var(--border-black);
}

/* Responsive: Card icon for mobile */
@media (max-width: 768px) {
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
}

.kaam-dhundho .card-icon i {
    color: var(--accent-1);
}

.kaam-karao .card-icon i {
    color: var(--accent-2);
}

.role-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: currentColor;
}

/* Card Title */
.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
}

/* Responsive: Card title for mobile */
@media (max-width: 768px) {
    .card-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
}

.kaam-dhundho .card-title {
    color: var(--accent-1);
}

.kaam-karao .card-title {
    color: var(--accent-2);
}

/* Card Description */
.card-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive: Card description for mobile */
@media (max-width: 768px) {
    .card-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .card-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* Card Features */
.card-features {
    margin-bottom: 40px;
}

/* Responsive: Card features for mobile */
@media (max-width: 768px) {
    .card-features {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .card-features {
        margin-bottom: 25px;
    }
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Responsive: Feature text for mobile */
@media (max-width: 768px) {
    .feature {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .feature {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
}

.feature i {
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Responsive: Feature icon for mobile */
@media (max-width: 768px) {
    .feature i {
        font-size: 1rem;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .feature i {
        font-size: 0.9rem;
        margin-right: 8px;
    }
}

.kaam-dhundho .feature i {
    color: var(--accent-1);
}

.kaam-karao .feature i {
    color: var(--accent-2);
}

/* Card Button */

a {
    text-decoration: none;
}

.card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

/* Responsive: Card button for mobile */
@media (max-width: 768px) {
    .card-button {
        padding: 14px 28px;
        font-size: 1rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .card-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 8px;
    }
}

.kaam-dhundho-btn {
    background: var(--accent-1);
    color: #FFFFFF;
}

.kaam-karao-btn {
    background: var(--accent-2);
    color: #FFFFFF;
}

.card-button::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.7s ease;
}

.card-button:hover::before {
    left: 100%;
}

.card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.kaam-dhundho-btn:hover {
    background: var(--primary-dark);
}

.kaam-karao-btn:hover {
    background: var(--primary-dark);
}

.card-button:active {
    transform: translateY(-1px);
}

/* Additional Info Section */
.additional-info {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive: Additional info for mobile */
@media (max-width: 768px) {
    .additional-info {
        margin-top: 10px;
    }
}

.info-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    max-width: 600px;
    border: 2px solid var(--border-black);
    transition: all 0.3s ease;
}

/* Responsive: Info card for mobile */
@media (max-width: 768px) {
    .info-card {
        padding: 25px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .info-card i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent-1);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FOOTER STYLES - MATCHING HELP & CONTACT PAGE
   ============================================ */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    border-top: 2px solid var(--border-black);
    transition: all 0.3s ease;
}

/* Responsive: Footer for mobile */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
        margin-top: 30px;
    }
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: var(--bg-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
}

/* Responsive: Footer content for mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 20px;
    }
}

.footer-brand {
    flex: 1;
    min-width: 280px;
}

@media (max-width: 768px) {
    .footer-brand {
        text-align: center;
        width: 100%;
    }
}

.brand-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.shramik {
    color: var(--accent-1);
}

.connect {
    color: var(--accent-2);
}

.brand-text:hover {
    transform: scale(1.05) translateY(-2px);
}

.tagline {
    font-size: 0.95rem;
    color: var(--footer-text);
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 15px;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

/* Responsive: Footer links for mobile */
@media (max-width: 768px) {
    .footer-links {
        justify-content: center;
        gap: 30px;
    }
}

.links-column {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

/* Responsive: Links column for mobile */
@media (max-width: 480px) {
    .links-column {
        min-width: 100px;
    }
}

.column-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--footer-text);
    position: relative;
    padding-bottom: 5px;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

/* Responsive: Column title for mobile */
@media (max-width: 768px) {
    .column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.links-column:nth-child(1) .column-title::after {
    background: var(--accent-1);
}

.links-column:nth-child(2) .column-title::after {
    background: var(--accent-2);
}

.links-column:nth-child(3) .column-title::after {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}

.links-column:nth-child(1):hover .column-title::after {
    width: 40px;
    background: var(--accent-2);
}

.links-column:nth-child(2):hover .column-title::after {
    width: 40px;
    background: var(--accent-1);
}

.links-column:nth-child(3):hover .column-title::after {
    width: 40px;
    background: var(--accent-2);
}

.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 4px 0;
    opacity: 0.8;
}

/* Responsive: Footer link hover for mobile */
@media (max-width: 768px) {
    .footer-link:hover {
        transform: translateY(-2px);
    }
}

.footer-link:nth-child(odd):hover {
    color: var(--accent-1);
    transform: translateX(4px);
    opacity: 1;
}

.footer-link:nth-child(even):hover {
    color: var(--accent-2);
    transform: translateX(4px);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-black);
}

/* ============================================
   SOCIAL ICONS
   ============================================ */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive: Social links for mobile */
@media (max-width: 768px) {
    .social-links {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 8px;
    }
}

.social-link {
    width: 42px;
    height: 42px;
    border: 2px solid var(--border-black);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Responsive: Social link size for mobile */
@media (max-width: 768px) {
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 14px;
    }
}

/* Background shine effect */
.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 ease;
}

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

.social-link i {
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Individual Icon Colors on Hover */

/* Instagram */
.social-link:nth-child(1):hover {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fdf497, #fd5949, #d6249f, #285AEB);
    border-color: transparent;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.4);
}
.social-link:nth-child(1):hover i {
    color: white;
    transform: scale(1.1);
}

/* Facebook */
.social-link:nth-child(2):hover {
    background: #1877F2;
    border-color: #1877F2;
    transform: translateY(-8px) scale(1.15) rotate(360deg);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}
.social-link:nth-child(2):hover i {
    color: white;
}

/* YouTube */
.social-link:nth-child(3):hover {
    background: #FF0000;
    border-color: #FF0000;
    transform: translateY(-8px) scale(1.15) rotateX(10deg);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}
.social-link:nth-child(3):hover i {
    color: white;
    animation: youtubePulse 0.8s ease;
}

@keyframes youtubePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* X (Twitter) */
.social-link:nth-child(4):hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-8px) scale(1.15) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.social-link:nth-child(4):hover i {
    color: white;
}

/* Email */
.social-link:nth-child(5):hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}
.social-link:nth-child(5):hover i {
    color: white;
}

/* Focus Styles for Accessibility */
button:focus-visible,
a:focus-visible,
.settings-icon:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}