/* ===== Warm Minimal Theme ===== */
/* Color Palette:
   --bg-deep: #1a1612 (deep brown/charcoal)
   --bg-card: #252019 (slightly lighter)
   --bg-surface: #2f2820 (surface elements)
   --accent: #d4a574 (warm gold)
   --accent-hover: #e8c49a (lighter gold)
   --text-primary: #f5f0e8 (cream)
   --text-secondary: #a89f94 (muted cream)
   --text-dim: #6b6259 (very muted)
   --border: #3d352c (subtle borders)
*/

:root {
    --bg-deep: #1a1612;
    --bg-card: #252019;
    --bg-surface: #2f2820;
    --accent: #d4a574;
    --accent-hover: #e8c49a;
    --text-primary: #f5f0e8;
    --text-secondary: #a89f94;
    --text-dim: #6b6259;
    --border: #3d352c;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --font-sans: 'Open Sans', -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    margin: 0;
    min-height: 100vh;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== Navigation ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, var(--bg-deep) 0%, transparent 100%);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-brand img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.nav-brand span {
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* Special AI nav link */
.nav-links a.nav-ai {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.4);
}

.nav-links a.nav-ai i {
    font-size: 0.85em;
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.nav-links a.nav-ai:hover {
    text-shadow: 0 0 15px rgba(212, 165, 116, 0.7);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ===== Hero Section with Terminal ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 80px;
    text-align: center;
}

/* Hero Avatar - Fixed position, animates via JS scroll interpolation */
.hero-avatar-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    pointer-events: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide hero avatar when mobile nav is open */
body.mobile-nav-open .hero-avatar-container {
    opacity: 0;
    visibility: hidden;
}

.hero-avatar {
    border-radius: 50%;
    border: 4px solid var(--accent);
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.3);
    object-fit: cover;
    pointer-events: auto;
    display: block;
    /* Size and position controlled by JS */
}

/* Always hide nav brand image on home page - hero avatar takes over */
body.has-hero-avatar .nav-brand img {
    opacity: 0;
    visibility: hidden;
}

/* Spacer to push content down for the hero avatar */
.hero-avatar-spacer {
    height: 280px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-avatar-spacer {
        height: 200px;
    }
}

.hero-intro {
    margin-bottom: 40px;
}

.hero-intro .greeting {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 1em;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-intro h1 {
    font-size: clamp(2.5em, 6vw, 4em);
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero-intro .tagline {
    font-size: clamp(1.1em, 2vw, 1.4em);
    color: var(--text-secondary);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.tagline .accent {
    color: var(--accent);
}

/* ===== Terminal Interface ===== */
.terminal {
    width: 100%;
    max-width: 700px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.terminal-header {
    background: var(--bg-surface);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.terminal-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    transition: all 0.2s ease;
    background: var(--bg-card);
    color: var(--text-dim);
}

.terminal-btn:hover {
    transform: translateY(-1px);
    color: var(--text-primary);
}

.terminal-btn.clear { border-color: var(--accent); color: var(--accent); }
.terminal-btn.clear:hover { background: var(--accent); color: var(--bg-deep); box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3); }
.terminal-btn.help { border-color: #6b9bd2; color: #6b9bd2; }
.terminal-btn.help:hover { background: #6b9bd2; color: var(--bg-deep); box-shadow: 0 2px 8px rgba(107, 155, 210, 0.3); }
.terminal-btn.info { border-color: #8bc28b; color: #8bc28b; }
.terminal-btn.info:hover { background: #8bc28b; color: var(--bg-deep); box-shadow: 0 2px 8px rgba(139, 194, 139, 0.3); }

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    font-size: 0.85em;
    font-family: var(--font-mono);
}

.terminal-body {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 0.95em;
    min-height: 180px;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-surface);
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: var(--bg-surface);
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.terminal-line {
    margin-bottom: 8px;
    line-height: 1.7;
}

.terminal-line.output {
    color: var(--text-secondary);
    padding-left: 20px;
}

.terminal-link {
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    margin-top: 8px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid var(--accent);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.terminal-link:hover {
    background: rgba(212, 165, 116, 0.2);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.3);
}

.terminal-prompt {
    color: var(--accent);
}

.terminal-command {
    color: var(--text-primary);
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background: var(--accent);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1em;
    outline: none;
    padding: 8px 0;
}

.terminal-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* ===== Terminal Teaser Mode ===== */
.terminal-teaser {
    transition: all 0.3s ease;
}

.terminal-teaser:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.15);
    border-color: var(--accent);
}

.terminal-teaser:focus {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

/* Persistent CTA bar at bottom of terminal */
.terminal-cta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.08) 100%);
    border-top: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.95em;
    font-weight: 500;
    animation: pulse 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.terminal-cta-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.03) 80%,
        transparent 100%
    );
    animation: glint 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glint {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

.terminal-cta-bar:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.25) 0%, rgba(212, 165, 116, 0.15) 100%);
}

.terminal-cta-bar i {
    font-size: 1.1em;
}

.terminal-cta-bar .fa-arrow-right {
    transition: transform 0.3s ease;
}

.terminal-teaser:hover .terminal-cta-bar .fa-arrow-right {
    transform: translateX(4px);
}

.teaser-preview {
    margin-top: 8px;
}

.teaser-response {
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4);
    }
    50% { 
        box-shadow: 0 0 20px 5px rgba(212, 165, 116, 0.2);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Quick Links under Terminal ===== */
.quick-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.quick-action:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.quick-action i {
    font-size: 1.1em;
}

/* Special AI action button */
.quick-action.ai-action {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-color: var(--accent);
    color: var(--accent);
    position: relative;
    overflow: hidden;
}

.quick-action.ai-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
    animation: aiShimmer 3s infinite;
}

@keyframes aiShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.quick-action.ai-action:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3) 0%, rgba(212, 165, 116, 0.1) 100%);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Projects Grid ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.project-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    padding: 30px;
}

.project-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* Gold color filter: brightness(0) makes it black, then sepia + saturate + hue-rotate gets gold */
    filter: brightness(0) saturate(100%) invert(73%) sepia(29%) saturate(456%) hue-rotate(347deg) brightness(91%) contrast(88%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.project-card:hover .project-card-image img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(19%) saturate(567%) hue-rotate(341deg) brightness(100%) contrast(90%);
    opacity: 1;
}

.project-card-content {
    padding: 24px;
}

.project-card-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.3em;
    color: #a89f94;
}

.project-card-content p {
    margin: 0;
    color: #8b7d6b;
    font-size: 0.95em;
    line-height: 1.5;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.site-footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.9em;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */

/* Hamburger Menu */
.nav-toggle {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1200;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #f5f0e8;
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .site-nav {
        padding: 16px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1100;
        padding: 0;
        margin: 0;
        display: flex;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-toggle:checked ~ .nav-links {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        list-style: none;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-toggle:checked ~ .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-toggle:checked ~ .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-toggle:checked ~ .nav-links li:nth-child(2) { transition-delay: 0.15s; }
    .nav-toggle:checked ~ .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .nav-toggle:checked ~ .nav-links li:nth-child(4) { transition-delay: 0.25s; }
    .nav-toggle:checked ~ .nav-links li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-links a {
        font-size: 1.5em;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .terminal-body {
        padding: 16px;
        font-size: 0.85em;
    }
    
    /* Terminal header - hide title on mobile to avoid overlap */
    .terminal-title {
        display: none;
    }
    
    .terminal-header {
        justify-content: flex-start;
        padding: 10px 12px;
    }
    
    /* Terminal input on mobile */
    .terminal-input-line {
        padding: 10px 12px;
    }
    
    .terminal-input {
        font-size: 0.9em;
        padding: 10px 12px;
    }
    
    .terminal-input::placeholder {
        font-size: 0.85em;
    }

    .section {
        padding: 60px 20px;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-action {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* ===== Page-specific styles ===== */

/* Experience/Resume Page */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg-deep);
}

.timeline-date {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.85em;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1.3em;
    margin: 0 0 4px 0;
}

.timeline-company {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.timeline-description {
    color: var(--text-secondary);
    font-size: 0.95em;
}

/* Skills Page */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.skill-category h3 {
    color: var(--accent);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px 0;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: var(--bg-surface);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85em;
}

/* Particles override for warm theme */
#particles-js {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-deep);
}

/* ===== Contact Form ===== */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1em;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--bg-deep);
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* Or divider and AI chat option */
.or-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.or-divider span {
    color: var(--text-dim);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 16px;
    background: var(--bg-deep);
}

.ai-chat-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
}

.ai-chat-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
    animation: aiOptionShimmer 3s infinite;
}

@keyframes aiOptionShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.ai-chat-option:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.25) 0%, rgba(212, 165, 116, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.contact-link i {
    font-size: 1.1em;
}

.contact-note {
    color: var(--text-dim);
    font-size: 0.9em;
}

.contact-note a {
    color: var(--accent);
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}
