/* ============================================
   CHACE CLABORN PORTFOLIO - CLEAN CSS REWRITE
   Author: Chace Claborn
   
   TABLE OF CONTENTS:
   1. CSS Variables & Global Reset
   2. Base Typography
   3. Header & Navigation (All Pages)
   4. Footer (All Pages)
   5. Home Page Specific
   6. Portfolio Page Specific
   7. Resume Page Specific
   8. Bonsai Assistant Page Specific
   9. Authentication UI
   10. Utility Classes
   11. AI Assistant Styles
   12. Responsive Design
============================================ */

/* ============================================
   1. CSS VARIABLES & GLOBAL RESET
============================================ */
:root {
    /* Primary Colors */
    --primary-green: #617140;
    --dark-green: #4a5930;
    --sage-green: #c5ceb3;
    --pale-green: #e6ead4;
    --light-sage: #a4b494;
    --medium-sage: #7a8e5a;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f5f6f2;
    --text-dark: #242b1d;
    --gray: #6c757d;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 32px rgba(97, 113, 64, 0.15);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--pale-green) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   2. BASE TYPOGRAPHY
============================================ */
h1 {
    font-weight: 700;
    color: var(--text-dark);
}

h2 {
    font-weight: 600;
    color: var(--dark-green);
}

h3 {
    font-weight: 600;
    color: var(--dark-green);
}

p {
    line-height: 1.6;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================
   3. HEADER & NAVIGATION (All Pages)
============================================ */
.site-header {
    background: linear-gradient(to bottom, rgba(197, 206, 179, 0.95) 0%, rgba(230, 234, 212, 0.95) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(97, 113, 64, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Logo */
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
}

/* Navigation Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-link:hover {
    background: rgba(97, 113, 64, 0.1);
    color: var(--primary-green);
}

.nav-link.active {
    background: var(--dark-green);
    color: var(--white);
}

/* Sign In/Out Button */
.btn-modern {
    padding: 0.75rem 1.5rem;
    background: var(--dark-green);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(97, 113, 64, 0.3);
}

.btn-modern:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 113, 64, 0.4);
}

/* User Info (When Signed In) */
.user-info {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hide email/name - only show avatar */
#user-name,
#user-email {
    display: none !important;
}

/* Member Navigation - Hidden by Default */
.member-nav {
    display: none;
}

/* Tier Navigation - Hidden by Default */
.tier-nav {
    display: none;
}

/* Hamburger Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark-green);
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-green);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Skills Section */
.skills-section {
    margin-top: 2rem;
}

.skills-category {
    margin-bottom: 2rem;
}

.skills-category h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background: var(--dark-green);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skill-tag:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ============================================
   4. FOOTER STYLES
============================================ */
/* Regular Footer (Portfolio, Resume, etc.) */
.site-footer {
    background: linear-gradient(135deg, #b5c3a7 0%, #7a8e5a 100%);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--white);
    font-size: 1.25rem;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Home page footer links */
.site-footer-home .footer-links a {
    color: var(--white);
    opacity: 0.9;
}

.site-footer-home .footer-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Home Page Footer with Quotes - Combined Design */
.site-footer-home {
    margin-top: 4rem;
    background: linear-gradient(135deg, #b5c3a7 0%, #7a8e5a 100%);
    padding: 0;
}

/* Quotes Section */
.quotes-section {
    padding: 4rem 2rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
}

.quotes-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 100px;
}

.quote-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quote-slide.active {
    display: block;
    opacity: 1;
}

.quote-text {
    font-size: 1.375rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0.95;
}

.quote-author::before {
    content: "— ";
}

/* Quote Indicators */
.quote-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.quote-indicators .quote-indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.quote-indicators .quote-indicator.active {
    background: var(--white);
    width: 28px;
    border-radius: 5px;
    border-color: var(--white);
}

/* Footer Bottom Section - No separate background */
.footer-bottom-section {
    padding: 2rem 0 2.5rem;
    background: transparent;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    margin: 0;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Chatbot Button */
.chatbot-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.chatbot-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   5. HOME PAGE SPECIFIC
============================================ */
/* Main Container */
.main-container {
    flex: 1;
    max-width: 1600px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Content Wrapper - Split Layout */
.content-wrapper {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(97, 113, 64, 0.15);
    min-height: 750px;
    backdrop-filter: blur(10px);
}

/* Left Panel - Profile Info */
.info-panel {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 234, 212, 0.6) 0%, rgba(245, 246, 242, 0.9) 100%);
    position: relative;
}

.info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(197, 206, 179, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Profile Section - Container for proper centering */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Profile Image - Properly centered */
.profile-image {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 4px solid var(--light-sage);
    box-shadow: 0 4px 12px rgba(97, 113, 64, 0.2);
}

.profile-section h1 {
    font-size: 2.5rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 0.5rem;
}

.profile-section .title {
    font-size: 1.25rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.2rem;
    box-shadow: 0 2px 6px rgba(97, 113, 64, 0.3);
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(97, 113, 64, 0.4);
}

/* About Section */
.about-section {
    text-align: center;
    margin-bottom: 2rem;
}

.about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.about-section p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-modern {
    background: var(--dark-green);
    padding: 0.9rem 2rem;
}

.cta-buttons .btn-modern:hover {
    background: var(--primary-green);
}

/* Right Panel - Image Slider */
.image-panel {
    flex: 1;
    position: relative;
    background: var(--sage-green);
    min-height: 500px;
}

.image-slider {
    height: 100%;
    position: relative;
}

.image-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(122, 142, 90, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
    border-color: var(--white);
}

/* ============================================
   6. PORTFOLIO PAGE SPECIFIC
============================================ */
/* Content Page Container */
.content-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 2rem auto;
    width: 100%;
    padding: 0 2rem;
    position: relative;
}

/* Portfolio Hero Section with Background Image */
.portfolio-hero {
    position: relative;
    height: 400px;
    background-image: url('../images/hotfire.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0 3rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(20, 25, 30, 0.3) 0%,
            rgba(10, 12, 15, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.95;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Portfolio Cards */
.portfolio-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(97, 113, 64, 0.2);
}

.portfolio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-green);
}

.portfolio-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Project Links */
.project-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--dark-green);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.project-link:hover {
    background: var(--primary-green);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ============================================
   7. RESUME PAGE SPECIFIC
============================================ */
/* Resume Container */
.resume-container {
    background: linear-gradient(135deg, rgba(230, 234, 212, 0.7) 0%, rgba(245, 246, 242, 0.95) 100%);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 12px 32px rgba(97, 113, 64, 0.15);
    max-width: 1200px;
    margin: 2rem auto;
    backdrop-filter: blur(10px);
    position: relative;
}

/* Add overlay effect to entire resume container */
.resume-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(197, 206, 179, 0.1) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 16px;
}

/* Resume Header Section with Green Background */
.resume-header-section {
    background: linear-gradient(135deg, rgba(230, 234, 212, 0.6) 0%, rgba(245, 246, 242, 0.9) 100%);
    margin: -3rem -3rem 3rem -3rem;
    padding: 3rem;
    border-radius: 16px 16px 0 0;
    position: relative;
}

/* Add the same overlay effect as info-panel */
.resume-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(197, 206, 179, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* CRITICAL FIX: Ensure name is ALWAYS dark green */
.photo-name h1,
.resume-header-section h1,
.resume-header-content h1,
h1.resume-name,
.resume-header-section .photo-name h1,
.resume-header-section * h1 {
    color: var(--dark-green) !important;
    font-weight: 700 !important;
}

/* Remove any white text styling */
.resume-header-section *:not(i) {
    color: var(--text-dark) !important;
}

/* Specific override for headers */
.resume-header-section h1,
.resume-header-section h2,
.resume-header-section h3,
.resume-header-section h4,
.resume-header-section h5,
.resume-header-section h6 {
    color: var(--dark-green) !important;
}

/* Force text colors for specific elements in resume header */
.resume-header-content h1,
.resume-header-content .photo-name h1,
.resume-header-section h1 {
    color: var(--dark-green) !important;
}

/* Resume Header Content */
.resume-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Photo and Name Section */
.photo-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    text-align: center;
}

/* Ensure all text in photo-name section is visible */
.photo-name * {
    color: var(--text-dark) !important;
}

.resume-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-sage);
    box-shadow: 0 4px 12px rgba(97, 113, 64, 0.2);
}

.photo-name h1 {
    color: var(--dark-green) !important;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.current-position {
    color: var(--primary-green) !important;
    font-size: 1.1rem;
}

/* Contact and Education Container */
.contact-education-wrapper {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
}

/* Contact Info */
.contact-info,
.education-info {
    flex: 0 1 auto;
    min-width: 200px;
}

.contact-info h3,
.education-info h3 {
    color: var(--dark-green) !important;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info p,
.education-info p {
    color: var(--text-dark) !important;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--primary-green) !important;
}

.contact-info a:hover {
    color: var(--dark-green) !important;
    text-decoration: underline;
}

.contact-info i,
.education-info i {
    color: var(--primary-green) !important;
    width: 20px;
}

/* Download Button */
.download-section {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.download-section .btn-modern {
    background: var(--dark-green);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.download-section .btn-modern:hover {
    background: var(--primary-green);
}

/* Resume Sections */
.resume-section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.resume-section h2 {
    font-size: 1.75rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--sage-green);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resume-section h2 i {
    color: var(--primary-green);
}

/* Job Items */
.resume-item {
    margin-bottom: 2rem;
}

.resume-item h3 {
    color: var(--dark-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.resume-item p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.resume-item .date {
    color: var(--primary-green);
    font-style: italic;
}

.resume-item ul {
    margin-left: 1.5rem;
}

.resume-item li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ============================================
   8. BONSAI ASSISTANT PAGE SPECIFIC
============================================ */
.bonsai-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin: -2rem -2rem 3rem -2rem;
}

.bonsai-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

/* ============================================
   9. AUTHENTICATION UI
============================================ */
/* Hide tier content by default */
[data-tier] {
    display: none;
}

/* Hide photo when signed out */
#user-info[style*="display: none"] #user-photo {
    display: none !important;
}

#user-photo:not([src]),
#user-photo[src=""] {
    display: none !important;
}

/* ============================================
   10. UTILITY CLASSES
============================================ */
/* Text Alignment */
.text-center {
    text-align: center;
}

/* Margins */
.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ============================================
   11. AI ASSISTANT STYLES
============================================ */
/* AI Assistant Launch Button */
.ai-assistant-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #617140 0%, #4a5930 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 9997;
    border: none;
    overflow: hidden;
}

.ai-assistant-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.ai-assistant-button:hover::before {
    animation: shimmer 0.5s ease-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.ai-assistant-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(97, 113, 64, 0.3);
}

.ai-assistant-button.hidden {
    display: none;
}

.ai-assistant-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* AI icon animation */
.ai-assistant-button .ai-icon {
    font-size: 28px;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

/* AI Assistant Container */
.ai-assistant-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    height: 500px;
    z-index: 9998;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    border-radius: 16px;
    overflow: hidden;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ai-assistant-container.open {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AI Assistant Header */
.ai-assistant-header {
    background: linear-gradient(135deg, #617140 0%, #4a5930 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ai-assistant-header .header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-assistant-header .ai-icon-small {
    font-size: 20px;
    animation: pulse 2s infinite;
}

.ai-assistant-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.ai-assistant-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* AI Assistant Body */
.ai-assistant-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #fafbf9, #f5f6f2);
}

/* Coming Soon Content */
.ai-coming-soon {
    max-width: 300px;
}

.ai-coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(97, 113, 64, 0.2);
    position: relative;
}

.ai-coming-soon-icon::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(97, 113, 64, 0.1);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.ai-coming-soon-icon i {
    font-size: 48px;
    color: var(--primary-green);
}

.ai-coming-soon h2 {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ai-coming-soon p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Features Preview */
.ai-features-preview {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.ai-features-preview h3 {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.ai-features-preview ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.ai-features-preview li {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-features-preview li i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* Status Badge */
.ai-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(97, 113, 64, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ai-status-badge i {
    font-size: 0.9rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   12. RESPONSIVE DESIGN
============================================ */

/* Desktop Footer Fix - Move icons left */
@media (min-width: 769px) {

    /* Home page footer */
    .site-footer-home .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        padding-right: 250px;
        /* Push content left */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .site-footer-home .footer-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    /* Other pages footer */
    .site-footer .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        padding-right: 250px;
        /* Push content left */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Resume Desktop Specific Layout Fix */
@media (min-width: 769px) {
    .resume-header-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 3rem;
        position: relative;
        z-index: 2;
    }

    .photo-name {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        flex: 1;
        text-align: center;
    }

    .contact-education-wrapper {
        display: flex;
        gap: 6rem;
        /* Increased gap between Contact and Education */
        flex: 2;
        justify-content: center;
        align-items: flex-start;
    }

    .contact-info,
    .education-info {
        flex: 0 1 250px;
        /* Fixed width for consistency */
        text-align: left;
    }
}

/* Tablet Styles */
@media (max-width: 968px) {

    /* Navigation */
    .header-container {
        padding: 0 1rem;
    }

    .nav-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .main-nav {
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    /* Home Page */
    .main-container {
        padding: 0 1rem;
        margin: 1rem auto;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }

    .info-panel {
        padding: 2rem;
        background: linear-gradient(135deg, rgba(230, 234, 212, 0.7) 0%, rgba(245, 246, 242, 0.9) 100%);
    }

    .image-panel {
        height: 400px;
        min-height: 400px;
    }

    .profile-section h1 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-right: 2rem;
        /* Reset desktop padding */
    }

    .site-footer .footer-content {
        padding-right: 2rem;
        /* Reset desktop padding */
    }

    .footer-right {
        width: 100%;
        justify-content: center;
    }

    .copyright {
        order: 2;
    }

    /* Portfolio */
    .portfolio-hero {
        height: 300px;
        margin: 0 0 2rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Resume */
    .resume-container {
        padding: 1.5rem;
    }

    .resume-header-section {
        margin: -1.5rem -1.5rem 2rem -1.5rem;
        padding: 2rem 1.5rem;
    }

    .resume-header-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        align-items: center;
    }

    .photo-name {
        flex-direction: column;
        text-align: center;
        width: 100%;
        align-items: center;
    }

    .photo-name>div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .photo-name h1 {
        text-align: center;
        width: 100%;
    }

    .current-position {
        text-align: center;
        width: 100%;
    }

    .contact-education-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }

    .contact-info,
    .education-info {
        text-align: center;
        width: 100%;
    }

    .contact-info p,
    .education-info p {
        justify-content: center;
    }

    .contact-info h3,
    .education-info h3 {
        justify-content: center;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {

    /* Site header remains sticky */
    .site-header {
        height: auto;
        min-height: unset;
    }

    /* Hide desktop navigation by default */
    .main-nav {
        display: none !important;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: rgba(230, 234, 212, 0.98);
        border: 1px solid rgba(97, 113, 64, 0.2);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(97, 113, 64, 0.25);
        padding: 1rem;
        min-width: 220px;
        margin-top: 0.5rem;
        z-index: 1000;
    }

    /* Show nav when active */
    .main-nav.active {
        display: flex !important;
        flex-direction: column;
        gap: 0.25rem;
    }

    /* Show hamburger button on mobile */
    .mobile-menu-btn {
        display: block !important;
    }

    /* Mobile nav links styling */
    .main-nav .nav-link {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        font-size: 0.95rem;
        background: white;
        margin: 2px 0;
    }

    .main-nav .nav-link:hover {
        background: rgba(97, 113, 64, 0.1);
    }

    .main-nav .nav-link.active {
        background: var(--dark-green);
        color: white;
    }

    /* Member nav on mobile */
    .member-nav {
        width: 100%;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(97, 113, 64, 0.1);
        margin-top: 0.5rem;
    }

    /* HIDE CTA BUTTONS ON MOBILE */
    .cta-buttons {
        display: none !important;
    }

    /* Profile Image Fix */
    .profile-image {
        width: 140px !important;
        height: 140px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 auto 24px !important;
        border: 4px solid var(--pale-green) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        animation: none !important;
        transition: none !important;
    }

    /* Social Links Mobile */
    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 16px !important;
        margin: 24px 0 32px !important;
    }

    .social-links a {
        width: 48px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: white !important;
        color: var(--dark-green) !important;
        border: 2px solid var(--dark-green) !important;
        border-radius: 50% !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        font-size: 20px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        overflow: visible !important;
        position: relative !important;
    }

    .social-links a::before {
        display: none !important;
    }

    .social-links a i,
    .social-links a .fab,
    .social-links a .fas {
        font-size: 20px !important;
        line-height: 1 !important;
        display: block !important;
        color: var(--dark-green) !important;
        width: auto !important;
        height: auto !important;
    }

    .social-links a:hover {
        background: var(--dark-green) !important;
        color: white !important;
        transform: translateY(-2px) !important;
        animation: none !important;
    }

    .social-links a:hover i {
        color: white !important;
        transform: none !important;
    }

    /* Platform specific colors */
    .social-links a:nth-child(1):hover {
        background: #0077b5 !important;
        border-color: #0077b5 !important;
    }

    .social-links a:nth-child(2):hover {
        background: #333 !important;
        border-color: #333 !important;
    }

    .social-links a:nth-child(3):hover {
        background: #617140 !important;
        border-color: #617140 !important;
    }

    /* Image Panel Mobile */
    .image-panel {
        height: 300px !important;
        position: relative !important;
        overflow: hidden !important;
        background: #f5f5f5 !important;
    }

    .image-slider {
        height: 100% !important;
        position: relative !important;
    }

    .slide {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0 !important;
        transition: opacity 0.5s ease !important;
    }

    .slide.active {
        opacity: 1 !important;
    }

    .slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
        animation: none !important;
    }

    /* Slide Indicators Mobile */
    .slide-indicators {
        position: absolute !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        gap: 8px !important;
        z-index: 10 !important;
    }

    .indicator {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.5) !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        border: none !important;
        animation: none !important;
    }

    .indicator.active {
        background: white !important;
        width: 20px !important;
        border-radius: 4px !important;
    }

    /* Floating Buttons Mobile */
    .fab-container {
        position: fixed !important;
        bottom: 24px !important;
        right: 24px !important;
        z-index: 900 !important;
    }

    .fab-primary,
    #ai-assistant-btn,
    .fab {
        display: none !important;
    }

    .fab-secondary {
        width: 56px !important;
        height: 56px !important;
        border-radius: 28px !important;
        background: var(--dark-green) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        font-size: 24px !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        animation: none !important;
    }

    .fab-secondary:active {
        transform: scale(0.95) !important;
    }

    /* AI Assistant Button Mobile */
    .ai-assistant-button {
        animation: none !important;
        position: fixed !important;
        bottom: 92px !important;
        right: 24px !important;
        width: 56px !important;
        height: 56px !important;
        transform: none !important;
        transition: all 0.2s ease !important;
    }

    .ai-assistant-button:active {
        transform: scale(0.95) !important;
    }

    .ai-assistant-button::after {
        display: none !important;
        animation: none !important;
    }

    /* Content Wrapper Mobile */
    .content-wrapper {
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden !important;
    }

    .content-wrapper::before {
        display: none !important;
        animation: none !important;
    }

    .info-panel {
        padding: 32px 24px !important;
        text-align: center !important;
        background: white !important;
    }

    /* Remove quote animations */
    .quote-text,
    .quote-author {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    /* Footer Mobile Complete Fix */
    .site-footer,
    .site-footer-home {
        padding: 2rem 0 !important;
    }

    .footer-container,
    .site-footer .footer-content {
        max-width: 100% !important;
        padding: 0 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }

    .copyright,
    .footer-content p {
        text-align: center !important;
        margin: 0 !important;
        width: 100% !important;
        order: 2 !important;
    }

    .footer-right {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        order: 1 !important;
        margin: 0 !important;
    }

    .footer-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.25rem !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }

    .footer-links a {
        all: unset !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        height: 46px !important;
        background: rgba(0, 0, 0, 0.25) !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
    }

    .footer-links a i {
        color: rgba(255, 255, 255, 0.95) !important;
        font-size: 1.4rem !important;
        line-height: 1 !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-links a:hover {
        background: rgba(0, 0, 0, 0.4) !important;
        transform: scale(1.1) !important;
    }

    /* Platform-specific hover colors */
    .footer-links a:nth-child(1):hover {
        background: #0077b5 !important;
    }

    .footer-links a:nth-child(2):hover {
        background: #333 !important;
    }

    .footer-links a:nth-child(3):hover {
        background: #ea4335 !important;
    }

    .footer-bottom-section {
        padding: 2rem 0 2.5rem !important;
    }

    /* AI Assistant Container Mobile */
    .ai-assistant-container {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }

    .ai-assistant-header {
        border-radius: 0;
    }

    /* General Mobile Fixes */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    .profile-section img,
    img.profile-image {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Remove all animations on mobile */
    * {
        animation-play-state: paused !important;
    }

    button,
    a,
    .social-links a,
    .fab-secondary,
    .ai-assistant-button {
        transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {

    /* General */
    body {
        font-size: 14px;
    }

    /* Header */
    .site-header {
        padding: 0.75rem 0;
    }

    .header-container {
        gap: 0.75rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .btn-modern {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    /* Home Page */
    .profile-section h1 {
        font-size: 1.75rem;
    }

    .profile-section .title {
        font-size: 1.1rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .about-section h2 {
        font-size: 1.25rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn-modern {
        width: 100%;
        text-align: center;
    }

    .image-panel {
        height: 300px;
        min-height: 300px;
    }

    /* Footer */
    .quotes-section {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-bottom-section {
        padding: 1.5rem 0 2rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .quote-author {
        font-size: 0.9rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .chatbot-button {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 1.1rem;
    }

    /* Portfolio */
    .portfolio-hero {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .portfolio-card {
        padding: 1.5rem;
    }

    .portfolio-card h3 {
        font-size: 1.25rem;
    }

    /* Resume Mobile */
    .resume-container {
        padding: 1.5rem 0.75rem;
    }

    .resume-header-section {
        padding: 1.5rem 1rem;
        margin: -1.5rem -0.75rem 2rem -0.75rem;
    }

    .resume-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .photo-name {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .resume-photo {
        margin: 0 auto 1rem;
    }

    .photo-name h1 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0.5rem;
        color: var(--dark-green) !important;
    }

    .current-position {
        font-size: 1rem;
        text-align: center;
        display: block;
        width: 100%;
        color: var(--primary-green) !important;
    }

    .contact-education-wrapper {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        align-items: center;
    }

    .contact-info,
    .education-info {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .contact-info h3,
    .education-info h3 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .contact-info p,
    .education-info p {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-info i,
    .education-info i {
        flex-shrink: 0;
    }

    /* Other resume mobile styles */
    .resume-photo {
        width: 120px;
        height: 120px;
    }

    .resume-section h2 {
        font-size: 1.5rem;
    }

    .resume-item h3 {
        font-size: 1.15rem;
    }

    .resume-item p,
    .resume-item li {
        font-size: 0.9rem;
    }

    /* AI Assistant */
    .ai-assistant-button {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .ai-assistant-button svg {
        width: 26px;
        height: 26px;
    }

    /* Footer links smaller on very small devices */
    .footer-links {
        gap: 1rem !important;
    }

    .footer-links a {
        width: 42px !important;
        height: 42px !important;
    }

    .footer-links a i {
        font-size: 1.2rem !important;
    }
}

/* Smaller devices */
@media (max-width: 375px) {
    .profile-image {
        width: 120px !important;
        height: 120px !important;
    }

    .social-links a {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
    }

    #logout-btn {
        height: 30px !important;
        padding: 0 14px !important;
        font-size: 12px !important;
    }

    .user-avatar {
        width: 30px !important;
        height: 30px !important;
    }

    .footer-links {
        gap: 1rem !important;
    }

    .footer-links a {
        width: 40px !important;
        height: 40px !important;
    }

    .footer-links a i {
        font-size: 1.2rem !important;
    }
}

/* Tablet and Desktop - Show navigation normally */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .main-nav {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .cta-buttons {
        display: flex !important;
    }
}