/* ===== CSS RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    
    /* Glass Morphism Colors */
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: rgba(255, 255, 255, 0.15);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-light: rgba(255, 255, 255, 0.8);
    
    /* Neutral Colors */
    --bg-primary: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.2);
    
    /* Semantic Colors */
    --success-color: #10b981;
    --error-color: #ef4444;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-3xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 25px rgba(255, 255, 255, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
}

/* ===== VIDEO BACKGROUND ===== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* ===== GLASS MORPHISM ===== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 1;
}

/* Header - Removed since we hid it */
.header {
    display: none;
}

/* Navigation */
.navigation {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    padding: var(--space-3) 0;
    transform: translateZ(0);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: var(--space-2);
    margin: 0 auto;
    max-width: fit-content;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    font-weight: 500;
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    -webkit-font-smoothing: antialiased;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(99, 102, 241, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.8) 50%, transparent 100%);
    border-radius: 2px;
}

/* Main Content */
.main-content {
    padding: var(--space-16) 0;
    min-height: 60vh;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header h2,
.section-header h3 {
    font-size: var(--font-size-3xl);
    color: #ffffff;
    margin-bottom: var(--space-4);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.hero-text h2 {
    font-size: var(--font-size-3xl);
    color: #ffffff;
    margin-bottom: var(--space-6);
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-visual {
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    isolation: isolate;
}

.cta-button.primary {
    background: rgba(59, 130, 246, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.cta-button.primary:hover {
    background: rgba(37, 99, 235, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.cta-button.large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-lg);
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.highlight-card {
    composes: glass-panel;
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.4));
}

.highlight-card h4 {
    color: #ffffff;
    margin-bottom: var(--space-3);
    font-size: var(--font-size-xl);
    font-weight: 600;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ===== CTA SECTION ===== */
.cta-section {
    composes: glass-panel;
    padding: var(--space-16) 0;
    text-align: center;
    border-radius: var(--radius-3xl);
    margin-top: var(--space-16);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h3 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.about-story,
.skills-section,
.education-section {
    composes: glass-panel;
    margin-bottom: var(--space-12);
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-story h3,
.skills-section h3,
.education-section h3 {
    font-size: var(--font-size-2xl);
    color: #ffffff;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.about-story p {
    margin-bottom: var(--space-6);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.skill-category {
    composes: glass-panel;
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.skill-category h4 {
    color: #ffffff;
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.skills-list {
    list-style: none;
}

.skills-list li {
    padding: var(--space-2) 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: var(--space-4);
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.skills-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Education */
.education-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.education-item {
    composes: glass-panel;
    padding: var(--space-6);
    border-left: 4px solid var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.education-item h4 {
    color: #ffffff;
    margin-bottom: var(--space-2);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.institution {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    font-weight: 400;
}

/* Sidebar */
.about-sidebar {
    position: sticky;
    top: 100px;
}

.profile-card {
    composes: glass-panel;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 255, 255, 0.25);
}

.profile-info {
    padding: var(--space-6);
}

.profile-info h4 {
    font-size: var(--font-size-xl);
    color: #ffffff;
    margin-bottom: var(--space-1);
    font-weight: 600;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.profile-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.profile-details p {
    margin-bottom: var(--space-3);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
    font-weight: 400;
}

.profile-details strong {
    color: #ffffff;
    font-weight: 600;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

/* Form Styles */
.contact-form-container {
    composes: glass-panel;
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.form-group input,
.form-group textarea {
    padding: var(--space-4);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group.error input,
.form-group.error textarea {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.25);
}

.error-message {
    color: #ffffff;
    font-size: var(--font-size-sm);
    margin-top: var(--space-2);
    font-weight: 500;
    background: rgba(239, 68, 68, 0.2);
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.submit-button {
    background: rgba(59, 130, 246, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: var(--space-5) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.submit-button:hover {
    background: rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

/* Contact Info */
.contact-info {
    composes: glass-panel;
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: fit-content;
}

.contact-details {
    margin-bottom: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-text h4 {
    color: #ffffff;
    margin-bottom: var(--space-1);
    font-size: var(--font-size-base);
    font-weight: 600;
}

.contact-text a,
.contact-text p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: #ffffff;
}

.social-links-horizontal {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    font-size: var(--font-size-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.response-info {
    composes: glass-panel;
    margin-top: var(--space-8);
    padding: var(--space-4);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.response-info h4 {
    color: #ffffff;
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.response-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
    font-weight: 400;
}

/* Form Messages */
.form-message {
    composes: glass-panel;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
}

/* ===== MODERN FOOTER STYLES ===== */
.footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-20);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.4) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 2;
}

/* Connect Section */
.connect-section {
    padding: var(--space-4) var(--space-4);
}

.footer-heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
    border-radius: 1px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    padding: var(--space-2) 0;
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.social-text {
    position: relative;
}

.social-text::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #3b82f6;
}

.social-link:hover .social-text::before {
    opacity: 1;
    left: -12px;
}

/* Contact Section */
.contact-section {
    padding: var(--space-4) var(--space-4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s ease;
    word-break: break-word;
    line-height: 1.4;
}

.contact-link:hover {
    color: #3b82f6;
}

.location {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    margin-bottom: var(--space-6);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-8);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.copyright {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.made-with {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.heart {
    color: #ef4444;
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
        padding: 0 var(--space-6);
    }
    
    .brand-section {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: var(--space-4);
        padding: var(--space-4) 0;
    }
    
    .footer-tagline {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .connect-section,
    .contact-section {
        padding: var(--space-4) var(--space-2);
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .footer {
        padding: var(--space-12) 0 var(--space-6);
        margin-top: var(--space-16);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: 0 var(--space-6);
        text-align: center;
    }
    
    .brand-section {
        grid-column: auto;
        margin-bottom: 0;
    }
    
    .connect-section,
    .contact-section {
        padding: var(--space-4) 0;
    }
    
    .social-links {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }
    
    .social-link:hover {
        transform: translateY(-2px);
    }
    
    .social-text::before {
        display: none;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .about-sidebar {
        position: static;
        order: -1;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--space-1);
        display: none;
        position: absolute;
        top: 100%;
        left: var(--space-4);
        right: var(--space-4);
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-xl);
        padding: var(--space-4);
        margin-top: var(--space-2);
    }
    
    .nav-menu[aria-expanded="true"] {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: var(--space-4) var(--space-6);
        margin-bottom: var(--space-1);
    }
    
    .nav-link.active::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--space-10) 0 var(--space-5);
    }
    
    .footer-content {
        padding: 0 var(--space-4);
        gap: var(--space-6);
    }
    
    .footer-bottom-content {
        padding: 0 var(--space-4);
    }
    
    .footer-name {
        font-size: var(--font-size-xl);
    }
    
    .footer-divider {
        padding: 0 var(--space-4);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .highlights-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .heart {
        animation: none;
    }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== MODERN FOOTER STYLES ===== */
.footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-20);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    width: 100%;
    /* Added rounded corners */
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.4) 50%, 
        transparent 100%);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 2;
}

/* Connect Section - Centered */
.connect-section {
    padding: var(--space-4) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
}

.footer-heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    width: 100%; /* Ensure full width for proper centering */
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%; /* Center the underline */
    transform: translateX(-50%); /* Perfect center alignment */
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
    border-radius: 1px;
}

/* Social Links - Centered */
.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center; /* Center the links */
    width: 100%; /* Full width for proper centering */
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    padding: var(--space-2) var(--space-4); /* Added horizontal padding */
    display: flex;
    align-items: center;
    justify-content: center; /* Center content within each link */
    min-width: 120px; /* Consistent width for all links */
}

.social-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.social-text {
    position: relative;
}

.social-text::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #3b82f6;
}

.social-link:hover .social-text::before {
    opacity: 1;
    left: -12px;
}

/* Connect Section - Centered */
.connect-section {
    padding: var(--space-4) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    width: 100%;
    /* Remove the blue underline by commenting out or removing the ::after pseudo-element */
}

/* Remove the blue underline completely */
.footer-heading::after {
    display: none; /* This completely removes the blue line */
}

/* Alternative: If you want to keep some visual separation but remove the blue color */
/* .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);  Change to subtle white instead of blue 
    border-radius: 1px;
} */

/* Social Links - Centered */
.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    width: 100%;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    padding: var(--space-2) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.social-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.social-text {
    position: relative;
}

.social-text::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #3b82f6;
}

.social-link:hover .social-text::before {
    opacity: 1;
    left: -12px;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
    display: none !important;
}

/* Ensure navigation is clean */
.navigation {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    padding: var(--space-3) 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: var(--space-2);
    margin: 0 auto;
    max-width: fit-content;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Adjust about content layout for full width */
.about-content {
    display: block; /* Change from grid to block */
}

.about-text {
    width: 100%; /* Take full width */
}

/* Remove the about-sidebar styles if completely removed */
.about-sidebar {
    display: none;
}
/* ===== SOCIAL LOGOS USING PURE CSS ===== */
.social-logo {
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all var(--transition-normal);
}

.instagram-logo {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.github-logo {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z'/%3E%3C/svg%3E");
}

.linkedin-logo {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452z'/%3E%3C/svg%3E");
}

/* ===== SYMMETRICAL SOCIAL LINKS GRID ===== */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.social-link-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 1;
    min-width: 60px;
    min-height: 60px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.social-link-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
}

.social-link-grid:hover::before {
    left: 100%;
}

.social-link-grid:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-link-grid:hover .social-logo {
    transform: scale(1.1);
}

/* Platform-specific hover effects */
.instagram-link:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.github-link:hover {
    box-shadow: 0 8px 25px rgba(36, 41, 46, 0.3);
}

.linkedin-link:hover {
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.3);
}

/* Ensure perfect symmetry */
.connect-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-4) var(--space-4);
}

.footer-heading {
    width: 100%;
    margin-bottom: var(--space-5);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .social-links-grid {
        max-width: 180px;
        gap: var(--space-3);
    }
    
    .social-link-grid {
        min-width: 55px;
        min-height: 55px;
        padding: var(--space-3);
    }
    
    .social-logo {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .connect-section {
        padding: var(--space-4) 0;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 200px;
        gap: var(--space-4);
    }
    
    .social-link-grid {
        min-width: 60px;
        min-height: 60px;
        padding: var(--space-4);
    }
    
    .social-logo {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .social-links-grid {
        max-width: 180px;
        gap: var(--space-3);
    }
    
    .social-link-grid {
        min-width: 50px;
        min-height: 50px;
        padding: var(--space-3);
    }
    
    .social-logo {
        width: 26px;
        height: 26px;
    }
}

/* Enhanced focus states for accessibility */
.social-link-grid:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    transform: translateY(-2px) scale(1.05);
}

/* Animation for social links */
@keyframes socialLogoAppear {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.social-link-grid {
    animation: socialLogoAppear 0.6s ease-out;
}

.social-link-grid:nth-child(2) {
    animation-delay: 0.1s;
}

.social-link-grid:nth-child(3) {
    animation-delay: 0.2s;
}
/* ===== CONSISTENT FOOTER BUTTON ANIMATIONS ===== */

/* Apply to all footer interactive elements */
.footer-section .contact-link,
.footer-bottom .made-with {
    transition: all var(--transition-normal);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* Contact email link animations */
.contact-link {
    display: inline-block;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 15px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Made with love text animations */
.made-with {
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid transparent;
}

.made-with::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.08), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
    border-radius: var(--radius-lg);
}

.made-with:hover::before {
    left: 100%;
}

.made-with:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.made-with:hover .heart {
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
}

/* Enhanced heart animation */
.heart {
    transition: all var(--transition-normal);
    display: inline-block;
}

/* Copyright text subtle animation */
.copyright {
    transition: all var(--transition-normal);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
}

.copyright:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

/* Footer section headings subtle hover */
.footer-heading {
    transition: all var(--transition-normal);
    padding: var(--space-2) 0;
    border-radius: var(--radius-sm);
}

.footer-heading:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Location text animation */
.location {
    transition: all var(--transition-normal);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
}

.location:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

/* Footer name/title animations */
.footer-name,
.footer-title,
.footer-tagline {
    transition: all var(--transition-normal);
}

.footer-name:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

.footer-title:hover {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.9);
}

.footer-tagline:hover {
    transform: translateY(-1px);
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced focus states for all interactive elements */
.contact-link:focus-visible,
.made-with:focus-visible,
.copyright:focus-visible,
.footer-heading:focus-visible,
.location:focus-visible,
.footer-name:focus-visible,
.footer-title:focus-visible,
.footer-tagline:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    transform: translateY(-2px);
}

/* Smooth transitions for all footer elements */
.footer * {
    transition: all var(--transition-normal);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-link,
    .made-with,
    .copyright {
        padding: var(--space-2);
    }
    
    .contact-link:hover,
    .made-with:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .contact-link,
    .made-with,
    .copyright {
        padding: var(--space-1) var(--space-2);
    }
    
    .footer-name:hover,
    .footer-title:hover,
    .footer-tagline:hover {
        transform: none;
    }
}

/* Animation timing for staggered effects */
.brand-section * {
    transition-delay: 0s;
}

.connect-section * {
    transition-delay: 0.05s;
}

.contact-section * {
    transition-delay: 0.1s;
}

.footer-bottom * {
    transition-delay: 0.15s;
}

/* Subtle glow effect on all hover states */
.contact-link:hover,
.made-with:hover,
.copyright:hover,
.footer-heading:hover,
.location:hover {
    filter: brightness(1.1);
}

/* Pulse animation for interactive elements */
@keyframes gentlePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }
}

.contact-link:active,
.made-with:active,
.social-link-grid:active {
    animation: gentlePulse 0.3s ease;
}
/* ===== CONSISTENT HEADER/NAVIGATION BUTTON ANIMATIONS ===== */

/* Apply to all navigation links */
.nav-link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
    border-radius: var(--radius-xl);
}

.nav-link:hover::before {
    left: 100%;
}

/* Enhanced hover effects for navigation links */
.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Active state enhancements */
.nav-link.active {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.3), 
        transparent
    );
    transition: left 0.8s ease;
    z-index: -1;
    border-radius: var(--radius-xl);
}

.nav-link.active:hover::before {
    left: 100%;
}

.nav-link.active:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.35) 0%, 
        rgba(99, 102, 241, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.08);
}

/* Mobile menu toggle button animations */
.mobile-menu-toggle {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
}

.mobile-menu-toggle::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.6s ease;
    z-index: -1;
    border-radius: var(--radius-lg);
}

.mobile-menu-toggle:hover::before {
    left: 100%;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Hamburger line animations */
.hamburger-line {
    transition: all var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation menu container animation */
.nav-menu {
    transition: all var(--transition-normal);
}

.nav-menu[aria-expanded="true"] {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced focus states for navigation */
.nav-link:focus-visible,
.mobile-menu-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    transform: translateY(-2px) scale(1.05);
}

/* Navigation glow effect for active state */
.nav-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(59, 130, 246, 0.4) 0%,
        transparent 70%
    );
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.nav-link.active .nav-glow {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Navigation container enhancements */
.navigation {
    transition: all var(--transition-normal);
}

.navigation.scrolled {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for navigation animations */
@media (max-width: 768px) {
    .nav-link {
        padding: var(--space-4) var(--space-6);
        margin-bottom: var(--space-2);
    }
    
    .nav-link:hover {
        transform: translateY(-1px) scale(1.02);
    }
    
    .nav-link.active:hover {
        transform: translateY(-2px) scale(1.03);
    }
    
    .mobile-menu-toggle {
        padding: var(--space-2);
    }
    
    .mobile-menu-toggle:hover {
        transform: translateY(-1px) scale(1.03);
    }
}

/* Smooth transitions for all navigation elements */
.navigation * {
    transition: all var(--transition-normal);
}

/* Hover effects for navigation menu container */
.nav-menu:hover {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.1), 
        0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Active page indicator animation enhancement */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.8), 
        transparent
    );
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-link.active:hover::after {
    width: 60%;
}

/* Click animation for all navigation elements */
.nav-link:active,
.mobile-menu-toggle:active {
    transform: translateY(0px) scale(0.98);
    transition: transform 0.1s ease;
}

/* Staggered animation for navigation items */
.nav-menu li:nth-child(1) .nav-link { transition-delay: 0s; }
.nav-menu li:nth-child(2) .nav-link { transition-delay: 0.05s; }
.nav-menu li:nth-child(3) .nav-link { transition-delay: 0.1s; }

/* Enhanced text shadow on hover */
.nav-link:hover {
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.nav-link.active:hover {
    text-shadow: 0 2px 12px rgba(59, 130, 246, 0.6);
}
/* ===== REMOVE ANIMATIONS FROM CONNECT AND CONTACT HEADINGS ONLY ===== */

/* Remove animations from Connect and Contact headings */
.connect-section .footer-heading,
.contact-section .footer-heading {
    transition: none !important;
    transform: none !important;
}

.connect-section .footer-heading:hover,
.contact-section .footer-heading:hover {
    transform: none !important;
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Remove the ::before slide animation */
.connect-section .footer-heading::before,
.contact-section .footer-heading::before {
    content: none !important;
}

/* Remove focus states */
.connect-section .footer-heading:focus-visible,
.contact-section .footer-heading:focus-visible {
    outline: none !important;
    transform: none !important;
}
/* ===== WHITE CTA BUTTON ===== */
.cta-button.white {
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button.white:hover {
    background: rgba(255, 255, 255, 1);
    color: #111827;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 1);
}

.cta-button.white:active {
    transform: translateY(-1px);
}
/* ===== MOBILE NAVIGATION - GUARANTEED TO WORK ===== */
.mobile-navigation {
    display: none;
}

@media (max-width: 768px) {
    .mobile-navigation {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
        padding: 10px 0;
    }
    
    .mobile-nav-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
    }
    
    .mobile-nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.7);
        padding: 8px 12px;
        border-radius: 12px;
        transition: all 0.3s ease;
        flex: 1;
        margin: 0 5px;
        max-width: 80px;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .mobile-nav-active {
        color: #ffffff !important;
        background: rgba(59, 130, 246, 0.3) !important;
    }
    
    .mobile-nav-text {
        font-size: 12px;
        font-weight: 600;
        margin-top: 4px;
    }
    
    /* Hide desktop navigation on mobile */
    .navigation {
        display: none !important;
    }
    
    /* Add padding to body to account for bottom nav */
    body {
        padding-bottom: 70px;
    }
}

@media (min-width: 769px) {
    .mobile-navigation {
        display: none !important;
    }
    
    .navigation {
        display: block !important;
    }
}