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

*, *::before, *::after {
    max-width: 100%;
}

:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-tertiary: #1A1A1A;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-tertiary: #666666;
    
    --accent-primary: #00FF88;
    --accent-secondary: #00CC6A;
    --accent-tertiary: #009950;
    
    --gradient-primary: linear-gradient(135deg, #00FF88 0%, #00CC6A 100%);
    --gradient-secondary: linear-gradient(135deg, #00CC6A 0%, #009950 100%);
    --gradient-glow: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
    
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: auto; /* Default cursor as fallback */
    width: 100%;
    max-width: 100vw;
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.privacy-header {
    margin-bottom: 4rem;
}

.privacy-intro {
    max-width: 800px;
    margin: 2rem 0;
}

.privacy-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 1rem 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.last-updated {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
}

.privacy-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--bg-tertiary);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.privacy-section h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.privacy-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.privacy-section li {
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.data-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.collection-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--bg-tertiary);
}

.collection-item h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--bg-tertiary);
    text-align: center;
}

.usage-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.usage-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.usage-item p {
    font-size: 0.9rem;
    margin: 0;
}

.security-info {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--bg-tertiary);
    margin: 1rem 0;
}

.no-practices {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.no-practice-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--bg-tertiary);
}

.no-icon {
    font-size: 1.5rem;
    color: #ff4757;
    flex-shrink: 0;
}

.no-practice-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.no-practice-item p {
    margin: 0;
    font-size: 0.9rem;
}

.rights-list {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--bg-tertiary);
    margin: 1rem 0;
}

.rights-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-tertiary);
}

.rights-list li:last-child {
    border-bottom: none;
}

.third-party-info {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--bg-tertiary);
    margin: 1rem 0;
}

.contact-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--accent-primary);
    text-align: center;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--accent-secondary);
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .data-collection-grid,
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-policy {
        padding: 6rem 0 3rem;
    }
    
    .no-practice-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Only hide cursor on desktop when custom cursor is properly loaded */
body.custom-cursor-loaded {
    cursor: none;
}

@media (pointer: coarse) {
    body {
        cursor: auto;
    }
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

@media (pointer: coarse) {
    .cursor {
        display: none;
    }
}



.cursor-follower {
    display: none;
}

/* Notification Banner */
.notification-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.notification-banner.show {
    transform: translateY(0);
    pointer-events: auto;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    margin: 0 20px;
    margin-top: 20px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.notification-banner.success .notification-content {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--accent-primary);
}

.notification-banner.error .notification-content {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.notification-icon {
    font-size: 20px;
    font-weight: bold;
}

.notification-message {
    flex: 1;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .notification-content {
        margin: 0 10px;
        margin-top: 10px;
        padding: 12px 16px;
    }
    
    .notification-message {
        font-size: 13px;
    }
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    z-index: 1;
    pointer-events: none;
}

.noise-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZmlsdGVyIGlkPSJub2lzZUZpbHRlciI+CiAgICA8ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC45IiBudW1PY3RhdmVzPSI0IiAvPgogIDwvZmlsdGVyPgogIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNub2lzZUZpbHRlcikiIG9wYWNpdHk9IjEiLz4KPC9zdmc+');
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-mark {
    width: 30px;
    height: 30px;
    position: relative;
}

.logo-bars {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.logo-bars span {
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.logo-bars span:nth-child(1) {
    width: 40%;
}

.logo-bars span:nth-child(2) {
    width: 70%;
}

.logo-bars span:nth-child(3) {
    width: 100%;
}

.logo:hover .logo-bars span:nth-child(1) {
    width: 70%;
}

.logo:hover .logo-bars span:nth-child(2) {
    width: 40%;
}

.logo:hover .logo-bars span:nth-child(3) {
    width: 100%;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.nav-toggle:hover,
.nav-toggle:active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Force show hamburger on smaller screens */
@media screen and (max-width: 992px) {
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: var(--bg-primary) !important;
        padding: 30px 20px !important;
        z-index: 999 !important;
        animation: slideDown 0.3s ease !important;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-secondary);
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary);
    background: rgba(26, 26, 26, 0.95);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #ff4444;
    box-shadow: 0 0 0 1px #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

.budget-slider-group {
    padding: 24px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.budget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.budget-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.budget-edit-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-tertiary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.budget-edit-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(0, 255, 136, 0.05);
}

.budget-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.budget-values span:nth-child(2) {
    color: var(--text-tertiary);
    font-size: 18px;
}

.range-slider {
    position: relative;
    height: 40px;
    margin: 0 12px;
    cursor: pointer;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-range {
    position: absolute;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: grab;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
    transition: all 0.2s ease;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.5);
}

.slider-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Larger touch targets for mobile */
@media (max-width: 768px) {
    .slider-thumb {
        width: 24px;
        height: 24px;
        border-width: 4px;
    }
    
    .slider-thumb:hover {
        transform: translate(-50%, -50%) scale(1.15);
    }
    
    .slider-thumb:active {
        transform: translate(-50%, -50%) scale(1.3);
    }
    
    .range-slider {
        height: 50px;
        touch-action: none;
    }
}

.budget-inputs {
    animation: fadeIn 0.3s ease;
}

.input-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    padding: 12px 16px;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary);
}

.input-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-save, .btn-cancel {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-save {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-save:hover {
    background: var(--accent-secondary);
}

.btn-cancel {
    background: transparent;
    color: var(--text-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

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


.contact-form .btn-primary {
    align-self: center;
    margin-top: 16px;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-link {
    position: relative;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: color var(--transition-fast);
}

.nav-text {
    display: block;
    transition: transform var(--transition-fast);
}

.nav-hover {
    position: absolute;
    top: 100%;
    color: var(--accent-primary);
    transition: transform var(--transition-fast);
}

.nav-link:hover .nav-text {
    transform: translateY(-100%);
}

.nav-link:hover .nav-hover {
    transform: translateY(-100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.sphere-1 {
    width: 800px;
    height: 800px;
    background: var(--gradient-primary);
    top: -400px;
    right: -400px;
    animation: float 20s ease-in-out infinite;
}

.sphere-2 {
    width: 600px;
    height: 600px;
    background: var(--gradient-secondary);
    bottom: -300px;
    left: -300px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(50px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.title-line {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.title-word {
    display: inline-block;
    animation: titleReveal 1s ease-out both;
}

.title-word:nth-child(2) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) .title-word:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) .title-word:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    position: relative;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    transition: transform var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-tertiary);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--text-tertiary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-primary);
    margin: 20px 0;
}

.section-title {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -1px;
}

/* Work Section */
.work {
    padding: 150px 0;
    background: var(--bg-secondary);
}

.projects-container {
    display: grid;
    gap: 100px;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.project-card:nth-child(even) {
    direction: rtl;
}

.project-card:nth-child(even) > * {
    direction: ltr;
}

.project-card {
    position: relative;
}

.project-number {
    position: absolute;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    top: -50px;
    z-index: 0;
}

.project-card:nth-child(odd) .project-number {
    right: -50px;
}

.project-card:nth-child(even) .project-number {
    left: -50px;
}

.project-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: var(--bg-secondary);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.project-gradient.gradient-2 {
    background: linear-gradient(135deg, #FF0080 0%, #8000FF 100%);
}

.project-gradient.gradient-3 {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
}

.project-gradient.gradient-4 {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
}

.project-gradient.gradient-5 {
    background: linear-gradient(135deg, #9D4EDD 0%, #C77DFF 100%);
}

.project-gradient.gradient-6 {
    background: linear-gradient(135deg, #FF4B4B 0%, #FF6B35 100%);
}

.project-gradient.gradient-7 {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
}

.project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    position: relative;
    z-index: 1;
}

.project-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.project-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.project-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.project-link:hover {
    gap: 20px;
}

.link-arrow {
    font-size: 24px;
    transition: transform var(--transition-fast);
}

/* About Section */
.about {
    padding: 150px 0;
    background: var(--bg-primary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-title {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 30px;
}

.about-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-primary);
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* About Visual Section */
.about-visual {
    padding-bottom: 100px;
    margin-bottom: 100px;
}

/* Tech Stack Animation */
.tech-stack {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.tech-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate 30s linear infinite;
}

.tech-stack:hover .tech-orbit {
    animation-play-state: paused;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 50%;
}

.tech-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:nth-child(2) { /* Swift - First item after orbit-ring */
    transform: rotate(0deg) translateX(150px) rotate(0deg);
}

.tech-item:nth-child(3) { /* Node.js */
    transform: rotate(60deg) translateX(150px) rotate(-60deg);
}

.tech-item:nth-child(4) { /* Python */
    transform: rotate(120deg) translateX(150px) rotate(-120deg);
}

.tech-item:nth-child(5) { /* GCP */
    transform: rotate(180deg) translateX(150px) rotate(-180deg);
}

.tech-item:nth-child(6) { /* Javascript */
    transform: rotate(240deg) translateX(150px) rotate(-240deg);
}

.tech-item:nth-child(7) { /* Kubernetes */
    transform: rotate(300deg) translateX(150px) rotate(-300deg);
}

.tech-stack:hover .tech-item {
    animation: itemRotate 4s linear infinite;
}

.tech-stack:hover .tech-item:hover {
    animation-play-state: paused;
}

@keyframes itemRotate {
    0% {
        transform: rotate(var(--rot)) translateX(150px) rotate(calc(-1 * var(--rot)));
    }
    100% {
        transform: rotate(var(--rot)) translateX(150px) rotate(calc(-1 * var(--rot) + 360deg));
    }
}

.tech-item:nth-child(2) { --rot: 0deg; }
.tech-item:nth-child(3) { --rot: 60deg; }
.tech-item:nth-child(4) { --rot: 120deg; }
.tech-item:nth-child(5) { --rot: 180deg; }
.tech-item:nth-child(6) { --rot: 240deg; }
.tech-item:nth-child(7) { --rot: 300deg; }

.tech-item:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}


/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tech-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    background: rgba(26, 26, 26, 0.95);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tech-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

/* Project Types Section */
.project-types-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.project-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.project-type-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.project-type-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.project-type-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.project-type-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-type-card li {
    color: var(--text-tertiary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 20px;
}

.project-type-card li:before {
    content: '→';
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.project-type-card li:last-child {
    border-bottom: none;
}

/* Custom Project CTA */
.custom-project-cta {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 106, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.custom-project-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.custom-project-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Selection */
.services-group {
    margin-bottom: 30px;
}

.services-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.services-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.services-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    user-select: none;
}

.service-badge:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.service-badge.selected {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.service-badge.selected .service-icon {
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}

.service-icon {
    font-size: 16px;
    transition: all var(--transition-fast);
}

.service-name {
    white-space: nowrap;
}

.custom-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .technologies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .services-badges {
        gap: 8px;
    }
    
    .service-badge {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .service-icon {
        font-size: 14px;
    }
    
    .custom-project-cta {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .custom-project-content h3 {
        font-size: 24px;
    }
    
    .custom-project-content p {
        font-size: 16px;
    }
    
    .technologies-section,
    .project-types-section {
        padding: 60px 0;
    }
}

/* Additional About Section */
.about-extra {
    padding: 100px 0 100px 0;
    margin-top: 70px;
}

.about-extra-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-extra-intro {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    color: var(--accent-primary);
    margin-bottom: 30px;
}

.about-extra-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.skills-extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.skill-extra-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-extra-item:hover {
    transform: translateX(10px);
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.skill-extra-icon {
    font-size: 24px;
}

.skill-extra-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Code Window */
.code-extra-window {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.window-extra-header {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-extra-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-extra-dot:nth-child(1) { background: #FF5F56; }
.window-extra-dot:nth-child(2) { background: #FFBD2E; }
.window-extra-dot:nth-child(3) { background: #27C93F; }

.code-extra-content {
    padding: 30px;
}

.code-extra-content pre {
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    overflow-x: auto;
}

.code-extra-keyword { color: #FF5F56; }
.code-extra-class { color: #FFBD2E; }
.code-extra-method { color: #5AC8FA; }
.code-extra-string { color: var(--accent-primary); }

/* Contact Section */
.contact {
    padding: 150px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.contact-title {
    font-size: clamp(40px, 5vw, 60px);
    margin-bottom: 30px;
}

.contact-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-button {
    position: relative;
    padding: 30px 60px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    overflow: hidden;
}

.button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.contact-button:hover .button-bg {
    transform: scaleX(1);
}

.button-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--accent-primary);
}

.social-icon {
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-center {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: center;
}

.footer-section h4.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .footer-center {
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    .footer-left,
    .footer-right {
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-left {
        margin-bottom: 20px !important;
    }
    
    .footer-section {
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-section h4.footer-title {
        text-align: center !important;
    }
    
    .footer-links {
        text-align: center !important;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-tertiary);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-tertiary);
}

.copyright {
    font-size: 14px;
    color: var(--text-tertiary);
}

.footer-mobile {
    display: none;
}

.footer-mobile-stack {
    display: none;
}

.footer-desktop {
    display: block;
}

@media (min-width: 769px) {
    .footer-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .footer-left,
    .footer-right {
        width: auto !important;
        text-align: left !important;
        margin: 0 !important;
    }
    
    .footer-right {
        text-align: right !important;
    }
    
    .footer-logo {
        text-align: left !important;
        width: auto !important;
        font-size: 24px !important;
    }
    
    .footer-tagline {
        text-align: left !important;
        width: auto !important;
        font-size: 14px !important;
    }
    
    .copyright {
        text-align: right !important;
        width: auto !important;
        font-size: 14px !important;
    }
}

/* Use mobile-style layout for all screen sizes */
.mobile-header {
    display: flex;
}

.desktop-image {
    display: none;
}

/* Desktop styling for mobile-style layout */
.project-content {
    text-align: left;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.mobile-image {
    width: 160px;
    height: 160px;
    margin: 0;
    border-radius: 32px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-image .project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-info {
    flex: 1;
    min-width: 0;
}

.project-title {
    margin-bottom: 15px;
    font-size: 48px;
}

.project-tags {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mobile-image {
        width: 120px;
        height: 120px;
        border-radius: 26px;
    }
    
    .project-header {
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .project-title {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .project-card:nth-child(even) {
        direction: ltr;
    }
    
    .project-number {
        right: -25px;
    }
    
    .project-card:nth-child(even) .project-number {
        right: -25px;
        left: auto;
    }
    
    .project-card:nth-child(odd) .project-number {
        right: -25px;
        left: auto;
    }
}
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visual {
        padding-bottom: 60px;
        margin-bottom: 60px;
    }
    
    .about-extra-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .skills-extra-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack {
        width: 300px;
        height: 300px;
    }
    
    .tech-item:nth-child(2) { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    .tech-item:nth-child(3) { transform: rotate(60deg) translateX(100px) rotate(-60deg); }
    .tech-item:nth-child(4) { transform: rotate(120deg) translateX(100px) rotate(-120deg); }
    .tech-item:nth-child(5) { transform: rotate(180deg) translateX(100px) rotate(-180deg); }
    .tech-item:nth-child(6) { transform: rotate(240deg) translateX(100px) rotate(-240deg); }
    .tech-item:nth-child(7) { transform: rotate(300deg) translateX(100px) rotate(-300deg); }
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 24px;
    }
    
    .nav-toggle span {
        width: 30px;
        height: 2px;
        background: var(--text-primary);
        transition: var(--transition-fast);
        transform-origin: center;
    }
    
    .nav-toggle.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column !important;
        padding: 40px 20px;
        gap: 30px !important;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .title-line {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        max-width: 320px;
        flex-shrink: 0;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: 85vh;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .work {
        padding: 80px 0;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .project-number {
        font-size: 90px;
        top: -20px;
        right: -25px;
    }
    
    .project-card:nth-child(even) .project-number {
        right: -25px;
        left: auto;
    }
    
    .project-card:nth-child(odd) .project-number {
        right: -25px;
        left: auto;
    }
    
    .mobile-image {
        width: 100px;
        height: 100px;
        border-radius: 22px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .project-header {
        gap: 20px;
        margin-bottom: 15px;
    }
    
    .project-title {
        margin-bottom: 8px;
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-left,
    .footer-right {
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .footer-left {
        margin-bottom: 30px !important;
    }
    
    .footer-logo {
        font-size: 32px !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-tagline {
        font-size: 16px !important;
        margin: 0 !important;
        text-align: center !important;
        width: 100% !important;
        color: var(--text-secondary) !important;
    }
    
    .copyright {
        font-size: 14px !important;
        margin: 0 !important;
        text-align: center !important;
        width: 100% !important;
        color: var(--text-tertiary) !important;
    }
    
    .budget-edit-text {
        display: none;
    }
    
    .budget-edit-btn {
        padding: 8px;
        min-width: 32px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 80px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .footer {
        padding: 25px 0;
    }
    
    .footer-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-left {
        margin-bottom: 25px !important;
    }
    
    .footer-logo {
        font-size: 28px !important;
    }
    
    .footer-tagline {
        font-size: 15px !important;
    }
    
    .copyright {
        font-size: 13px !important;
    }
    
    .project-title {
        font-size: 28px;
    }
    
    .project-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .mobile-image {
        width: 85px;
        height: 85px;
        border-radius: 19px;
    }
    
    .project-header {
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-number {
        font-size: 55px;
        top: -15px;
        right: -20px;
    }
    
    .project-card:nth-child(even) .project-number {
        right: -20px;
        left: auto;
    }
    
    .project-card:nth-child(odd) .project-number {
        right: -20px;
        left: auto;
    }
    
    .project-content {
        padding: 0 5px;
    }
    
    .contact-button {
        font-size: 24px;
        padding: 20px 40px;
    }
    
    .projects-container {
        gap: 60px;
    }
}