section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    min-height: 200vh; /* For demo scrolling */
}

/* Minimal Navbar */
.minimal-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.navbar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand/Logo */
.navbar-brand {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.7;
}

.brand-symbol {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol-dot {
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.symbol-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-link:hover .symbol-ring {
    opacity: 1;
    transform: scale(1);
}

.brand-link:hover .symbol-dot {
    transform: scale(1.2);
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #666666;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a1a;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Right Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.04);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-btn:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.04);
}

.language-arrow {
    transition: transform 0.3s ease;
}

.language-selector.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.language-option:hover,
.language-option.active {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.04);
}

.contact-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #ffffff;
}

/* Mobile Button */
.mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-btn-inner {
    width: 24px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-line {
    width: 100%;
    height: 1px;
    background: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-btn.active .mobile-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-btn.active .mobile-line:nth-child(2) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    padding: 40px 32px 0;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #1a1a1a;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
    color: #666666;
}

.mobile-link.active {
    color: #666666;
}

.mobile-link-text {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.mobile-link-number {
    font-size: 14px;
    color: #cccccc;
    font-weight: 300;
    font-variant-numeric: tabular-nums;
}

.mobile-footer {
    position: absolute;
    left: 0;
    right: 0;
    padding: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-contact {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.4s;
}

.mobile-menu.active .mobile-contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact-label {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
}

.mobile-contact-btn {
    display: inline-block;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #ffffff;
}

.mobile-social {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.45s;
}

.mobile-menu.active .mobile-social {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #666666;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
    background: rgba(0, 0, 0, 0.02);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.search-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.search-close {
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.search-close:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.04);
}

.search-input-container {
    position: relative;
    margin-bottom: 60px;
}

.search-input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #cccccc;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 300;
    color: #1a1a1a;
    background: none;
    padding: 16px 0 16px 40px;
    border-bottom: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-bottom-color: #1a1a1a;
}

.search-input::placeholder {
    color: #cccccc;
}

.search-suggestions {
    flex: 1;
}

.suggestions-section {
    margin-bottom: 40px;
}

.suggestions-section h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.suggestion-tag {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #666666;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.quick-link:hover {
    color: #1a1a1a;
}

.quick-link-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-wrapper {
        padding: 0 20px;
        height: 64px;
    }
    
    .navbar-nav,
    .navbar-actions {
        display: none;
    }
    
    .mobile-btn {
        display: block;
    }
    
    .mobile-menu {
        top: 64px;
    }
    
    .search-content {
        padding: 100px 20px 60px;
    }
    
    .search-header h2 {
        font-size: 20px;
    }
    
    .search-input {
        font-size: 18px;
    }
    
    .mobile-nav {
        padding: 32px 20px 0;
    }
    
    .mobile-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar-wrapper {
        padding: 0 16px;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .mobile-link-text {
        font-size: 20px;
    }
    
    .search-content {
        padding: 80px 16px 40px;
    }
    
    .mobile-nav {
        padding: 24px 16px 0;
    }
    
    .mobile-footer {
        padding: 16px;
    }
}

/* Scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
