:root {
    /* 🌙 DARK THEME (Default) */
    --bg-color: #0f172a;
    --light-bg: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --nav-bg: rgba(15, 23, 42, 0.85);
    --card-bg: rgba(30, 41, 59, 0.5);
    --border-color: rgba(255, 255, 255, 0.05);
    --input-bg: rgba(30, 41, 59, 0.5);
    --code-bg: rgba(30, 41, 59, 0.7);
    --timeline-border: #1e293b;
    --cursor-size: 20px;
    --toast-bg: #10b981;
}

/* ☀️ LIGHT THEME */
[data-theme="light"] {
    --bg-color: #ffffff;
    --light-bg: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --accent: #d97706;
    --accent-glow: rgba(217, 119, 6, 0.3);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --card-bg: rgba(248, 250, 252, 0.8);
    --border-color: rgba(15, 23, 42, 0.1);
    --input-bg: #f1f5f9;
    --code-bg: rgba(248, 250, 252, 0.9);
    --timeline-border: #e2e8f0;
    --toast-bg: #059669;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cursor-dot {
    width: 8px; height: 8px;
    background-color: var(--accent);
}
.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid var(--accent);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
body:hover .cursor-outline { opacity: 1; }
body.hovered .cursor-outline {
    width: 60px; height: 60px;
    background-color: rgba(245, 158, 11, 0.1);
    border-color: transparent;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--accent);
    width: 0%;
    z-index: 1001;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--toast-bg);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast i { font-size: 1.2rem; }

/* Command Palette */
.command-palette {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}
.command-palette.active { display: flex; }
.palette-content {
    background: var(--light-bg);
    width: 500px;
    max-width: 90%;
    border-radius: 8px;
    border: 1px solid var(--accent);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}
.palette-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}
.palette-header i { color: var(--accent); }
.palette-header input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    margin: 0 10px;
    font-size: 1rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}
.close-hint {
    font-size: 0.7rem;
    background: var(--border-color);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--text-secondary);
}
.palette-list {
    list-style: none;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}
.palette-list li {
    padding: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.palette-list li i { color: var(--accent); width: 20px; }
.palette-list li:hover, .palette-list li.active {
    background: var(--accent);
    color: var(--bg-color);
}
.palette-list li:hover i, .palette-list li.active i {
    color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease-in-out; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-primary);
}
.theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(15deg);
}
.theme-toggle i {
    position: absolute;
    transition: all 0.3s ease;
}
.theme-toggle .fa-sun {
    opacity: 0;
    transform: rotate(90deg);
}
.theme-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0);
}
[data-theme="light"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0);
}
[data-theme="light"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

.btn-nav {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-nav:hover { 
    background: rgba(245, 158, 11, 0.1); 
    box-shadow: 0 0 15px var(--accent-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--text-primary);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -5px; left: 0;
    background-color: var(--accent);
    transition: all 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: var(--accent); margin: 5px 0; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.greeting { color: var(--accent); font-family: 'JetBrains Mono', monospace; margin-bottom: 20px; }
.name { font-size: 4rem; color: var(--text-primary); line-height: 1.1; }
.title { font-size: 3rem; color: var(--text-secondary); margin-bottom: 20px; }
.bio-short { max-width: 500px; color: var(--text-secondary); margin-bottom: 30px; }

.hero-btns { display: flex; gap: 20px; margin-bottom: 40px; }
.btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary { 
    background: transparent; 
    border: 1px solid var(--accent); 
    color: var(--accent); 
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: all 0.3s ease;
}
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { color: var(--bg-color); box-shadow: 0 0 20px var(--accent-glow); }

.btn-outline { border: 1px solid var(--text-secondary); color: var(--text-secondary); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.social-links { display: flex; gap: 20px; font-size: 1.5rem; }
.social-icon { color: var(--text-secondary); }
.social-icon:hover { color: var(--accent); transform: translateY(-3px); text-shadow: 0 0 10px var(--accent-glow); }

/* 3D Code Block */
.code-block {
    background: var(--code-bg);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.code-header { 
    padding: 10px 15px; 
    display: flex; 
    align-items: center;
    gap: 8px; 
    background: rgba(0,0,0,0.2); 
    border-bottom: 1px solid var(--border-color);
}
.file-name { margin-left: auto; color: var(--text-secondary); font-size: 0.7rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.code-content { padding: 20px; color: var(--text-secondary); }
.code-keyword { color: #c792ea; }
.code-string { color: var(--accent); }
.code-func { color: #82aaff; }

/* Sections */
.section { padding: 100px 0; transition: background-color 0.3s ease; }
.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.section-title::after {
    content: "";
    display: block;
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, var(--light-bg), transparent);
}

/* About & Skills */
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 50px; }
.about-text p { color: var(--text-secondary); font-size: 1.1rem; }
.skills-wrapper h3 { color: var(--text-primary); margin-bottom: 20px; font-family: 'JetBrains Mono', monospace; display: flex; align-items: center; gap: 10px;}
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

.skill-item {
    background: var(--card-bg);
    padding: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.skill-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 3px; height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: all 0.3s ease;
}
.skill-item:hover { 
    transform: translateX(5px); 
    border-color: var(--accent); 
}
.skill-item:hover::before { opacity: 1; }
.skill-item i { color: var(--accent); font-size: 1.2rem; }
.skill-item span { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: var(--text-primary); }

/* Experience Timeline */
.timeline { position: relative; border-left: 2px solid var(--timeline-border); margin-left: 20px; transition: border-color 0.3s ease; }
.timeline-item {
    margin-bottom: 50px;
    padding-left: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: 1s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item::before {
    content: "";
    position: absolute;
    left: -6px; top: 5px;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
}
.timeline-role { color: var(--text-primary); font-size: 1.3rem; margin-bottom: 5px; }
.timeline-company { color: var(--accent); font-family: 'JetBrains Mono', monospace; margin-bottom: 15px; }
.timeline-desc { color: var(--text-secondary); }
.timeline-desc ul { list-style: disc; margin-left: 20px; margin-top: 10px; }
.timeline-desc li { margin-bottom: 8px; }

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.1s, background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    top: 0;
    border: 1px solid var(--border-color);
    transform-style: preserve-3d;
    perspective: 1000px;
}
.project-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(125deg, rgba(255,255,255,0.1) 0%, transparent 40%);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.project-card:hover::after { opacity: 1; }

.project-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.folder-icon { font-size: 2rem; color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }
.project-links a { color: var(--text-secondary); font-size: 1.2rem; margin-left: 10px; }
.project-links a:hover { color: var(--accent); }
.project-title { color: var(--text-primary); font-size: 1.4rem; margin-bottom: 10px; }
.project-desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; }
.project-tech { display: flex; gap: 15px; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--text-secondary); }

/* Contact */
.contact-container { text-align: center; max-width: 600px; }
.contact-content { margin-top: 50px; }
.contact-info { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.info-item { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); cursor: pointer; transition: 0.3s; }
.info-item:hover { color: var(--accent); }
.info-item i { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    padding: 15px;
    color: var(--text-primary);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}
.contact-form button { align-self: flex-start; }

/* Footer */
footer {
    background: var(--light-bg);
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
    border-top: 1px solid var(--border-color);
}
.inner-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.copyright { margin-bottom: 10px; }
.copyright a { color: var(--accent); font-weight: 500; }
.last-updated { font-size: 0.8rem; opacity: 0.7; }

/* Resume Template (Hidden) */
.resume-template {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 800px;
    background: #fff;
    color: #000;
    padding: 40px;
    font-family: 'Inter', sans-serif;
}
.resume-header {
    text-align: center;
    border-bottom: 2px solid #0f172a;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.resume-header h1 { font-size: 2.5rem; color: #0f172a; margin-bottom: 5px; }
.resume-title { font-size: 1.2rem; color: #f59e0b; margin-bottom: 15px; }
.resume-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #64748b;
}
.resume-contact span { display: flex; align-items: center; gap: 5px; }
.resume-section { margin-bottom: 25px; }
.resume-section h2 {
    font-size: 1.3rem;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.resume-item { margin-bottom: 15px; }
.resume-item h3 { font-size: 1.1rem; color: #0f172a; }
.resume-item p { color: #64748b; font-size: 0.95rem; }
.resume-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.resume-skills span {
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #0f172a;
}
.resume-certs { list-style: disc; margin-left: 20px; color: #64748b; }

/* Responsive */
@media (max-width: 768px) {
    * { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .social-links { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .nav-right { gap: 10px; }
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%; top: 70px;
        flex-direction: column;
        background: var(--light-bg);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s;
        border-bottom: 1px solid var(--accent);
    }
    .nav-menu.active { left: 0; }
    .name { font-size: 2.5rem; }
    .title { font-size: 1.5rem; }
    .section-title::after { width: 100px; }
    .palette-content { width: 95%; }
}

/* ========================================
   📱 ENHANCED MOBILE OPTIMIZATIONS
   ======================================== */

@media (max-width: 768px) {
    /* Hide desktop-only features */
    .cursor-dot, .cursor-outline { display: none; }
    .hero-visual { display: none; }
    .command-palette { display: none !important; }
    
    /* Typography Adjustments */
    .name { font-size: 2.5rem !important; }
    .title { font-size: 1.5rem !important; }
    .section-title { font-size: 1.8rem !important; }
    .section-title::after { width: 100px !important; }
    
    /* Navbar */
    .nav-right { gap: 10px; }
    .theme-toggle { width: 36px; height: 36px; }
    .btn-nav { padding: 6px 12px; font-size: 0.75rem; }
    .btn-nav i { display: none; } /* Hide icon on small screens */
    
    /* Mobile Menu */
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--light-bg);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        transition: 0.3s ease;
        border-bottom: 1px solid var(--accent);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 15px 0; }
    .nav-link { font-size: 1.1rem; }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    .hero-content { padding: 0 10px; }
    .greeting { font-size: 1rem; }
    .bio-short { font-size: 1rem; }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .btn { width: 100%; max-width: 280px; }
    .social-links { justify-content: center; }
    
    /* About Section */
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-pics {
        margin: 0 auto 30px;
        width: 180px;
        height: 180px;
    }
    .about-text { text-align: center; }
    .skills-grid { grid-template-columns: 1fr; }
    
    /* Experience Timeline */
    .timeline { margin-left: 10px; }
    .timeline-item {
        padding-left: 30px;
        margin-bottom: 30px;
    }
    .timeline-item::before {
        left: -4px;
        width: 8px;
        height: 8px;
    }
    .timeline-item::after {
        left: -37px;
        width: 2px;
        height: 100%;
    }
    
    /* Projects & Certifications */
    .projects-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .project-card,
    .certification-card {
        padding: 25px;
    }
    
    /* Contact Section */
    .contact-container { padding: 0 15px; }
    .contact-content {
        padding: 30px 20px;
        margin-top: 40px;
    }
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    .info-item {
        min-width: 100%;
        padding: 20px;
    }
    .contact-form { max-width: 100%; }
    .contact-form input,
    .contact-form textarea {
        text-align: left;
        padding: 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        text-align: left;
    }
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
    .contact-cta .btn { width: 100%; max-width: 280px; }
    
    /* Footer */
    footer { padding: 30px 0; }
    .copyright { font-size: 0.85rem; }
    
    /* Scroll Progress */
    .scroll-progress { height: 4px; }
    
    /* Toast Notification */
    .toast {
        left: 50%;
        right: auto;
        width: 90%;
        max-width: 350px;
        bottom: 20px;
    }
    
    /* Buttons - Better Touch Targets */
    .btn, .btn-nav, .theme-toggle, .info-item {
        min-height: 44px; /* Apple's recommended touch target */
    }
    
    /* Disable 3D Tilt on Mobile */
    .project-card, .code-block {
        transform: none !important;
    }
}

/* ========================================
   📱 EXTRA SMALL SCREENS (< 480px)
   ======================================== */

@media (max-width: 480px) {
    .name { font-size: 2rem !important; }
    .title { font-size: 1.2rem !important; }
    .section-title { font-size: 1.5rem !important; }
    
    .inner-width { padding: 0 15px; }
    
    .hero-btns .btn { padding: 12px 20px; }
    
    .certification-icon {
        width: 50px;
        height: 50px;
    }
    .certification-icon i { font-size: 1.5rem; }
    
    .timeline-role { font-size: 1.1rem; }
    .timeline-company { font-size: 0.85rem; }
}

/* ========================================
   📱 TOUCH DEVICE OPTIMIZATIONS
   ======================================== */

@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .project-card:hover,
    .certification-card:hover,
    .skill-item:hover,
    .info-item:hover {
        transform: none;
    }
    
    /* Show active states instead */
    .project-card:active,
    .certification-card:active,
    .skill-item:active,
    .info-item:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    /* Larger touch targets */
    .nav-link {
        padding: 15px 0;
        display: block;
    }
    
    /* Remove custom cursor completely */
    * { cursor: auto !important; }
}

/* ========================================
   📱 IOS SAFARI FIXES
   ======================================== */

@supports (-webkit-touch-callout: none) {
    /* Prevent iOS zoom on input focus */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Fix viewport height */
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* ========================================
   📱 ANDROID CHROME FIXES
   ======================================== */

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Smooth scrolling for Android */
    html {
        scroll-behavior: smooth;
    }
}

